javascript 關聯陣列的一個用法

來源:互聯網
上載者:User

最近作一些東西,要用到數組,想用字串作為數組的索引,這其實就是關聯陣列了。
但是這些字串又是臨時添加進取的,我要從數組取資料的時候,並不知道這些字串都是什麼,如果用數字作索引,那麼字串的資訊就丟失了。
最後,通過尋找知道,像對象一樣訪問數組就可以解決問題了。例子如下:

function
 test()

{

        
var
 oneArray
=
new
 Array();

        oneArray[
"
first
"
]
=
"
firstValue
"
;

        oneArray[
"
second
"
]
=
"
secondValue
"
;

        

        

        oneDrapList
=
document.createElement(
"
select
"
);

        

        
for
(att 
in
 oneArray)

{

            
var
 oneOption
=
document.createElement(
"
option
"
);

            oneOption.text
=
oneArray[att]

            oneOption.value
=
att;

            
try

{

                oneDrapList.add(oneOption,
null
);

                }



            
catch
(ex)

{

                oneDrapList.add(oneOption);

                }



            }



}


這樣,我就可以同時訪問數組的索引值和實際的值了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.