在Javascript代码中,如何访问对象中的值?
这是一个例子
var a = [{
"temp": true
}];
console.log(a['temp']);
我的预期输出是true
,但是它返回undefined
。
答案 0 :(得分:0)
为a
分配了一个数组值。并且它仅包含作为对象的值。因此,要获取temp
的值,您需要获取a
的索引为0的对象。然后,您可以使用它的属性。
var a = [{"temp": true}];
alert(a[0]['temp']);
console.log(a[0]['temp']);