gpt4 book ai didi

javascript - 为什么原型(prototype) javascript 在这种情况下不起作用

转载 作者:行者123 更新时间:2023-11-28 16:18:01 25 4
gpt4 key购买 nike

我的案例(为什么“test1”没有出现在警报窗口中):

var Parent=function(){
this.test1= function(){
alert("test1");
}
}

var Child=function(){
this.prototype=new Parent();
}

var test=new Child();
test.test1();

http://jsfiddle.net/c3sUM/2/ (网上同样的代码可以尝试)​

谢谢

最佳答案

问题是您没有分配 Child 的原型(prototype),而是在 Child 的实例中创建了一个属性 prototype ,该属性指向 Parent 的实例。

instead, do this :

var Child = function(){};        // create constructor
Child.prototype = new Parent(); // assign instance of parent to constructor's
// prototype

A similar answer可能有帮助

关于javascript - 为什么原型(prototype) javascript 在这种情况下不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10778200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com