-4
var playlist = {"bad romance":"gaga", "we cry":"the script"};
如何從我的代碼中獲取字符串「gaga」?你能告訴我,在JavaScript編程中我的數組名稱是什麼?在javascript中創建關聯數組
var playlist = {"bad romance":"gaga", "we cry":"the script"};
如何從我的代碼中獲取字符串「gaga」?你能告訴我,在JavaScript編程中我的數組名稱是什麼?在javascript中創建關聯數組
嘗試Object
,而不是Array
:
var playlist = {"bad romance":"gaga", "we cry":"the script"};
alert(playlist["bad romance"]); //gaga
即結構在Javascript無效的,如果我沒有弄錯。字典/地圖與陣列混淆。嘗試使用'{'而不是'(',你將擁有一個有效的字典,並可以通過播放列表['bad romance']進行訪問,這意味着播放列表[key] – nunofmendes