javascript类道具

时间:2011-06-17 13:30:25

标签: javascript

我有一个像这样定义的类(方案):

myClass = BaseClass.extend({
    method1 : function(){ ...},
    method2 : function(){ ...}
});

如何从method1调用method2?类似的东西:

myClass = BaseClass.extend({
    method1 : function(){ method2(); },
    method2 : function(){ ...}
});

1 个答案:

答案 0 :(得分:3)

你需要范围:

this.method2();