我正在使用Google Chrome API,我想命名一个带有父节点名称(var tree[0].parentName = {};
)
我目前正在寻找良好的语法,但如果有人知道 - 他们可以把它给我吗?
谢谢,
布鲁诺
答案 0 :(得分:0)
你需要使用eval();在这种情况下。
这样的事情应该成功(暗示parentName是“aParent”):
eval('var ' + tree[0].parentName + ' = {};');
//A new variable named tree[0].parentName ("aParent" in this example) was created
alert(aParent);
希望这有帮助!