我有一个对象,该对象是称为参数的数组的成员,并且此对象具有一个名为item_的属性,现在,如果我为该属性分配值,该如何调用呢?

for(ss=0;ss<=parameters[gpc].children_count-1;ss++)
{
parameters[gpc]['item_'+ss]="hello";
//console.log(parameters[gpc].item_0)

parameters[gpc].message+="\t\t&lt;item value=&quot"+parameters[gpc].item_+ss+"&quot /&gt;"
}


我尝试了eval()但徒劳。

最佳答案

您可以尝试将其作为关联数组值进行访问:

就像您分配值一样。

关于javascript - 动态调用对象属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20584303/

10-16 21:07