猿问

使用JavaScript原型的调用方法

如果重写了JavaScript中的原型方法,则可以调用基础方法吗?


MyClass = function(name){

    this.name = name;

    this.do = function() {

        //do somthing 

    }

};


MyClass.prototype.do = function() {  

    if (this.name === 'something') {

        //do something new

    } else {

        //CALL BASE METHOD

    }

};


牛魔王的故事
浏览 536回答 3
3回答
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答