精华帖 (0) :: 良好帖 (1) :: 新手帖 (1) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-11-19
赞..能补充下,
继承后.NoFruit.prototype的constructor指向吗 |
|
返回顶楼 | |
发表时间:2011-11-19
最后修改:2011-11-19
凑热闹.....
|
|
返回顶楼 | |
发表时间:2011-11-20
msnvip 写道 赞..能补充下,
继承后.NoFruit.prototype的constructor指向吗 继承后 NotFruit.prototype.constructor 的指向为其基类 -- Fruit 这个也可以自己运行代码来尝试,可以在源代码基础上的末尾删除最后一行语句后(出错代码 alert(dog.notFoundFruit());)添加如下代码: alert(NotFruit.prototype.constructor == Fruit); // 输出 true alert(NotFruit.prototype.constructor == NotFruit);// 输出false 或者 alert(NotFruit.prototype.constructor); /* 输出 function Fruit(){ this.fruit = true; }*/ |
|
返回顶楼 | |