function Rect(config){}
Rect.prototype.area = function(){
alert("我是父方法");
}
function myRect(config){
arguments.callee.prototype.constructor.prototype.area(); //子类里调用父方法area
arguments.callee.prototype.area();//子类里调用重载方法area
}
myRect.prototype = new Rect();
myRect.prototype.area = function(){
alert("我是重载方法");
}
var rectObj = new myRect();
rectObj.constructor.prototype.area();//子类实例调用父类方法area
rectObj.area();//子类实例调用子类方法area
原文地址:https://www.cnblogs.com/catgatp/p/9096103.html
时间: 2024-10-28 17:43:38