当前位置:主页 > 网页前端 > JavaScript代码 >

采用call方式实现js继承

时间:2021-04-08 10:38:35 | 栏目:JavaScript代码 | 点击:

复制代码 代码如下:

//采用call方式实现js继承
function A(color) {
this.Acolor = color;
this.AshowColor = function() {
document.writeln("Acolor: " + this.Acolor);
}
}

function B(color, name) {
A.call(this, color);

this.Bname = name;
this.BshowName = function() {
document.writeln("Bname: " + this.Bname);
}
}

var objA = new A("red");
objA.AshowColor();
document.writeln("----------------");
var objB = new B("black", "demo");
objB.AshowColor();
objB.BshowName();
document.writeln("----------------");

您可能感兴趣的文章:

相关文章