我创建了一个简单的 html 来枚举名称,上面的人名作为类。然后我得到类名并对照数组检查它。结果未定义。这是我的代码:
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'
我错过了什么?
谢谢。