委托事件触发两次

发布于 2024-11-27 10:20:19 字数 419 浏览 0 评论 0原文

该委托事件会触发两次(并非总是如此,有时)。

client.bindButtonClickFunction = function(){

    $("#client-plugin").delegate(".client-button", "click", function()
    {
        var id = this.id.split('-')[2];
        client.retrieveMessageByID(id);
    });
};

我在插入所有“.client-button”后调用该函数。

关于如何阻止它有什么想法吗?我尝试了 event.stopPropagation(),也尝试了取消委托和重新委托,但均无济于事。

这是在 Chrome 中,作为 Chrome 插件的一部分。

This delegate event is firing twice (not always, sometimes).

client.bindButtonClickFunction = function(){

    $("#client-plugin").delegate(".client-button", "click", function()
    {
        var id = this.id.split('-')[2];
        client.retrieveMessageByID(id);
    });
};

I call the function after inserting all the ".client-button"'s.

Any thoughts on how to stop it? I tried event.stopPropagation(), and also undelegating and re-delegating to no avail.

This is in Chrome, as part of a Chrome plugin.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-12-04 10:20:19

根据您注册委托的方式,您可能想要执行以下操作:

$("#client-plugin").undelegate('event').delegate('event', ...)

此外,尝试从处理程序添加return false

Depending on how you register the delegate, you might want to do:

$("#client-plugin").undelegate('event').delegate('event', ...)

Also, try to add a return false from your handler.

熊抱啵儿 2024-12-04 10:20:19

您需要立即停止传播

   $("#client-plugin").on(".client-button", "click", function (e) {
    e.stopImmediatePropagation();
    var id = this.id.split('-')[2];
    client.retrieveMessageByID(id);
});

You need to stop immediate propagation

   $("#client-plugin").on(".client-button", "click", function (e) {
    e.stopImmediatePropagation();
    var id = this.id.split('-')[2];
    client.retrieveMessageByID(id);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文