javascript继承实现

方式1. 构造函数绑定

function A() {
this.am = "aaa";
this.af = function() {
console.log("aaafff");
}
}
function B() {
A.call(this, arguments);//A.apply(this. arguments);
this.bm = "bbb";
}
var b = new B();
console.log(b.am);
b.af();

方式2. 利用prototype

function A() {
this.am = "aaa1";
}
A.prototype.af = function() {
console.log("f1f1");
}
function B() {
this.bm = "xxx";
}
B.prototype = new A();
B.prototype.constructor = B;
B.prototype.bf = function() {
console.log("22222");
}
var b = new B();
console.log(b.am);
b.af();
b.bf();

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。