1 回答
已采纳
西兰花伟大炮
TA贡献376条经验 获得超318个赞
首先数组后边跟方括号不是什么方法,获取索引对应的值,而在对象中有两种方式来操作属性,点操作符和中括号,中括号中的字符串可以拼接
var obj = { somevalues:"hehe", methods:function(){ alert("haha"); //控制台中会看到第二个为undefined,因为没指定return }, '8':"weidapao" } console.log(obj['some'+'values']); //拼接也是可以的 console.log(obj['methods']()); console.log(obj[2+6]); //会把数字转换为字符串
添加回答
举报
0/150
提交
取消