在object中添加方法的问题

时间:2015-04-01 08:24:23

标签: javascript

我有这个对象:

var Point = {
    step: function () {
        alert("hello");
    }
};

这有效:Point.step();

如何使用[ ]表示法?含义Point["property_name"]

1 个答案:

答案 0 :(得分:1)

Point["step"]();。这是片段:



var Point = {
    step: function () {
        alert("hello");
    }
};

Point["step"]();