我有这个对象:
var Point = {
step: function () {
alert("hello");
}
};
这有效:Point.step();
。
如何使用[ ]
表示法?含义Point["property_name"]
。
答案 0 :(得分:1)
是Point["step"]();
。这是片段:
var Point = {
step: function () {
alert("hello");
}
};
Point["step"]();