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铅笔
LEATH
相关分类