Javascript对象使用变量获取对象

时间:2012-11-21 02:19:57

标签: javascript object

我试图使用变量来收集对象的信息。我是一名php程序员,我对javascript还不是很好。

var priceobj= {'Youth Small':'0', 'Youth Meduim':'0', 'Youth Large':'0','Adult Small':'0','Adult Medium':'0','Adult Large':'0','Adult XL':'0','Adult XXL':'2','Adult XXXL':'3'};

var os0 = $('#os0').val(); // value will be one of the options in priceobj

var value = priceobj.os0 // this should read 0,2,3 depending on the value of os0

1 个答案:

答案 0 :(得分:3)

尝试

var value = priceobj[os0];

os0不是键,它是表示键的值。你打电话的方式,它必须是一把钥匙。