我創建了一個枚舉名稱的簡單html,其中的人名稱爲類。然後我得到類名並根據數組進行檢查。結果是未定義的。這裏是我的代碼:從jquery數組返回值
var prof_name = $(this).attr('class');
var n = prof_name.split(' ');
var name_out = n[0];
var nameList = {'rom':'Rommel Santiago','holy':'Holiander Fields'};
var nameValue = nameList.nameout;
alert(nameValue); //this pops up as undefined
alert(nameList.rom) // this pops up as 'Rommel Santiago'
我錯過了什麼?
謝謝。
嗨Axel,我仍然得到相同的結果。如果我提醒nameList.name_out,我得到未定義。如果我提醒nameList.rom,那麼我會得到該值。這似乎是name_out值格式不正確。 –
您可以發佈您試圖從中檢索這些值的HTML嗎? – Axel
我已經用解決方案更新了我的答案。我相信你只是不正確地引用你的數組。 – Axel