javascript關聯陣列

來源:互聯網
上載者:User

原文地址:http://wyllife.blog.163.com/blog/static/4116390120115210038676/

一.關聯陣列(hash數組)
標準javascript 是內含支援hash關聯陣列,經尋找資料並測試,有關標準javascript內含的hash關聯陣列操作備忘如下

1。Hash關聯陣列定義

// 定義空數組 
myhash = { }

// 直接定義數組 
myhash = {”key1″:”val1″, “key2″:”val2″ }

// 用Array 定義數組 
myhash = new Array();
myhash[”key1″] = “val1″;
myhash[”key2″] = “val2″;

2。向Hash關聯陣列添加索引值

// 添加一個新鍵 newkey ,索引值為 newval 
myhash[”newkey”] = “newval”;

3。刪除Hash關聯陣列已有索引值

// 刪除一個鍵 newkey ,同時,該索引值對應的 newval 也就消失了。
delete myhash[”newkey”];

4。遍曆Hash關聯陣列

// 遍曆整個hash 數組 
for (key in myhash) {
val = myhash[key];
}

5。Hash關聯陣列簡易使用樣本

// 轉向指令碼 
<script type=”text/javascript”>
urlhash = { “yahoo”:”www.yahoo.cn“,
“baidu”:”www.baidu.com“,
“google”:”www.google.cn” };

// 互動式使用樣本
userinfo = prompt(”請輸入您最想去的搜尋引擎:(yahoo|baidu|google)”, “yahoo”);
document.write (”您的選擇:” + userinfo + “,<a href=http://” + getURL(userinfo) + ” target=_blank>” + “按此即可進入” + “</a>” + userinfo + “。”);

// getURL
// 如果參數未定義,預設返回 www.yahoo.cn 網址
// @param choice 選擇名稱
// @return url 實際的URL
function getURL(choice) {
url = urlhash[choice];
if (typeof(urlhash[choice]) == “undefined”)
url = “www.yahoo.cn“;
return url;
}

// 獲得hash列表的所有 keys
// @param hash hash數組
// @return keys 鍵名資料
function array_keys(hash) {
keys = [];
for (key in hash)
keys.push(key);
return keys;
}
</script>

二.普通數組

建立 Array 對象的文法:
new Array(); new Array(size); new Array(element0, element1, ..., elementn);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.