如何清除 jQuery 中最后一个 bind() 事件回调?

发布于 2024-12-03 15:08:49 字数 715 浏览 0 评论 0原文

我需要动态绑定()click事件,但问题是当我第二次或第三次绑定时,最后一个bind()回调也会触发。如何清除最后的bind()事件回调?并用这个新的回调函数覆盖 click 事件?

请注意,event 是用户定义的对象,而不是 Javascript 事件对象。

function showEditModal(event, callback)
{
    $("#dialog-form").dialog('open');

    $('#place').val(event.metadata.place);
    $('#type').val(event.metadata.type);
    $('#city').val(event.metadata.city);

    $('#dialog-form .button-save').show().click(function()
    {
        event.metadata.place = $('#place').val();
        event.metadata.type = $('#type').val();
        event.metadata.city = $('#city').val();

        $('#dialog-form').dialog('close');
        
        callback(event);
    });
}

I need to dynamically bind() the click event, but the problem is when I bind for the second or third time, last bind()-ed callbacks will also trigger. How can I clear last bind()-ed event callbacks? And overwrite click event with this new callback func?

Note that event is a user-defined object, and not Javascript event object.

function showEditModal(event, callback)
{
    $("#dialog-form").dialog('open');

    $('#place').val(event.metadata.place);
    $('#type').val(event.metadata.type);
    $('#city').val(event.metadata.city);

    $('#dialog-form .button-save').show().click(function()
    {
        event.metadata.place = $('#place').val();
        event.metadata.type = $('#type').val();
        event.metadata.city = $('#city').val();

        $('#dialog-form').dialog('close');
        
        callback(event);
    });
}

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

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

发布评论

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

评论(1

半枫 2024-12-10 15:08:49

使用 one 怎么样?此方法与 .bind() 相同,只是处理程序在首次调用后解除绑定。 (基于 jQuery 文档)

How about using one? This method is identical to .bind(), except that the handler is unbound after its first invocation. (based on jQuery docs)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文