名前を列挙する単純な 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'
私は何を逃したのですか?
ありがとう。