gpt4 book ai didi

javascript - 按钮上的主干点击事件不起作用

转载 作者:行者123 更新时间:2023-12-03 10:26:48 26 4
gpt4 key购买 nike

https://jsfiddle.net/2j0bw7yy/

如果您查看上面的 jsfiddle 链接,您可以看到一个非常基本的 Backbone 应用程序。

除了这一行之外一切正常:

events: {
"click button": "updatePoints"
},

updatePoints: function() {
alert("aaa");
return this;
},

当我单击按钮时,不会调用 updatePoints 函数。什么也没发生。

控制台中的错误消息非常神秘:

Uncaught TypeError: undefined is not a function

最佳答案

您正在使用 jQuery 1.6.x。主干网至少需要 1.7.x。

在主干代码中,由于 1.6.x 没有 .off

undelegateEvents: function() {
this.$el.off('.delegateEvents' + this.cid);
return this;
},

https://jsfiddle.net/2j0bw7yy/1/

关于javascript - 按钮上的主干点击事件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29368313/

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