var A = function(name){ this.name = name;
}var B = function(){
A.apply(this, arguments); //apply传入对象时我知道this指向这个对象,请问apply(this)是什么意思呢? }
B.prototype.getName = function(){ return this.name;
}
var b = new B("2B铅笔");console.log( b.getName() ); // 输出: 2B铅笔
添加回答
举报
0/150
提交
取消