function A(){
this.a = '1';
this.b = '2';
this.init();
}
A.prototype.init = function(){
console.log('000000');
}
new A()
上面的这个可以输出000000
,而下面这个就不行:
function A(){
this.a = '1';
this.b = '2';
this.init();
}
A.init = function(){
console.log('000000');
}
new A()
这是为什么呢?
MM们
相关分类