如何清除 jQuery 中最后一个 bind() 事件回调?
我需要动态绑定()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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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)