js 原型链继承
2021-05-06 14:28
标签:图形 image 绑定 http fun str 结果 call 打印 1.利用call或者apply绑定this的方式,只能继承实例属性。不能继承原型对象上的方法和属性 2.原型链继承 函数B继承函数A :图形示例如下: 打印结果: js 原型链继承 标签:图形 image 绑定 http fun str 结果 call 打印 原文地址:https://www.cnblogs.com/xuexia/p/12097901.htmlfunction A (cat) {
this.cat = "猫咪"
}
A.prototype.myName = function () {
console.log(this.dog)
}
function B (dog) {
this.dog = ‘nih‘
}
B.prototype = new A ()
B.prototype.constructor = B
var b = new B (‘这是一只狗‘)
b.myName()
console.log(b.cat)