如何使用变量作为键访问对象。这是我的代码示例:
var o = {"k1": "111", "k2": "222"};
alert(o.k1); //working fine
var key = "k"+1; alert(key); // k1
alert(o.key); //not working
如何使用变量作为键访问对象。这是我的代码示例:
var o = {"k1": "111", "k2": "222"};
alert(o.k1); //working fine
var key = "k"+1; alert(key); // k1
alert(o.key); //not working
您可以访问像数组这样的对象:
alert(o[key]);
将最后一行更改为:alert(o['k1']);
或动态构造的属性键alert(o[key]);
在哪里key
。
请记住,您可以使用数组表示法访问对象的属性。
考虑使用for...in
循环