久久久久无码精品,四川省少妇一级毛片,老老熟妇xxxxhd,人妻无码少妇一区二区

javascript創(chuàng)建數(shù)組之聯(lián)合數(shù)組的使用方法

時(shí)間:2024-08-30 01:53:29 JavaScript 我要投稿
  • 相關(guān)推薦

javascript創(chuàng)建數(shù)組之聯(lián)合數(shù)組的使用方法

  復(fù)制代碼 代碼如下:

  //js中的數(shù)組可以以鍵值對(duì)的方式存在

  var arr = new Array();

  arr["A"] = "boss";

  arr["B"] = "Emp";

  for (var m in arr) {

  document.write(arr[m] + " ");

  }

  var person = new Object();

  person["name"] = "xiaoli";

  person["age"] = "18";

  person["salary"] = "1888.9";

  for (var p in person) {

  document.write(person[p] + "

  ");

  }

  //測(cè)試使用有age屬性呢?

  if (typeof person["age"] == "undefined") {

  document.write("no");

  }

【javascript創(chuàng)建數(shù)組之聯(lián)合數(shù)組的使用方法】相關(guān)文章:

JavaScript數(shù)組常用方法介紹09-04

c語言字符數(shù)組使用方法10-14

php數(shù)組函數(shù)序列之a(chǎn)rray-combine() - 數(shù)組合并函數(shù)的代碼08-25

Excel高手武器:數(shù)組基礎(chǔ)08-08

Java數(shù)組操作方法大全08-22

如何獲取PHP數(shù)組的鍵與值呢10-25

2016年java數(shù)組操作方法大全06-19

詳解JavaScript中的splice()使用方法08-20

關(guān)于J2ME數(shù)組的復(fù)制及連接操作方法09-06

Javascript中arguments對(duì)象的詳解和使用方法08-20