原文:当时当我们重新定义函数的prototype时(注意:和上例的区别,这里不是修改而是覆盖), constructor的行为就有点奇怪了,如下示例:function Person(name) {
this.name = name;
};
Person.prototype = {
getName: function() {
return this.name;
}
};
var p = new Person("haorooms");
console.log(p.constructor === Person); // false
console.log(Person.prototype.constructor === Person); // false
console.log(p.constructor.prototype.constructor === Person); // false为什么呢? 原来是因为覆盖Person.prototype时,等价于进行如下代码操作:Person.prototype = new Object({
getName: function() {
return this.name;
}
});-------------------------------------------------------------分割线----------------------------------------------------问题1.为什么重新定义prototype后p.constructor === Person都会返回false问题2.Person.prototype = new Object({
getName: function() {
return this.name;
}
});没看懂什么意思,为什么要在写参数的位置定义属性方法呢
添加回答
举报
0/150
提交
取消