Home  >  Article  >  Web Front-end  >  Using call method to implement js inheritance_javascript skills

Using call method to implement js inheritance_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:47:361141browse
复制代码 代码如下:

//采用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("----------------");
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn