如何使用变量作为键访问对象。这是我的代码示例:
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]);