我有一个非常奇怪的问题。我正在尝试访问子对象,但它不起作用。最简单的方法是只显示 FireBug 的控制台输出:
console.log(DesignDocument)
DesignDocument: mwrNsBrowser
html: e.fn.e.init[1]
name: "Game Design Document"
rootName: "Game Design Document"
__proto__: Object
afterLoadCategory: function (bitData, catName)...
bits: Object
hide: function ()...
html: ""
loadCategory: function (catName, parentBit)...
name: ""
rootName: ""
show: function ()...
tmp: Object
现在我正在尝试访问原型中定义的“位”对象。工作也很好。
console.log(DesignDocument.bits)
Object
DocumentSet1: Array[1]
0: mwrBrowserBit
length: 1
但这就是问题所在。我尝试获取“DocumentSet1”数组:
var selector = "DocumentSet1";
console.log(DesignDocument.bits[selector])
undefined
它只是返回“未定义”!我目前不知道为什么这不起作用。希望有人能告诉我我太笨了...