如何解除特定事件处理程序的绑定
代码:
$('#Inputfield').keyup(function(e)
{
if(e.which == 13)
{
functionXyz();
}
else
{
functionZyx();
}
});
$(document).keyup(function(exit) {
if (exit.keyCode == 27) { functionZzy(); }
});
问题: 如何删除 keyCode == 27 的 keyup 事件处理程序并保持其他 $(document).keyup 事件处理程序不变?
Code:
$('#Inputfield').keyup(function(e)
{
if(e.which == 13)
{
functionXyz();
}
else
{
functionZyx();
}
});
$(document).keyup(function(exit) {
if (exit.keyCode == 27) { functionZzy(); }
});
Question: How to remove the keyup event handler of keyCode == 27 and keep the other $(document).keyup event handlers intact?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须使用命名函数,以便在调用
.unbind()
,像这样:然后稍后解绑时:
You have to use a named function so you can reference that specific handler when calling
.unbind()
, like this:Then later when unbinding:
您将事件处理程序附加到不同的元素,因此您可以安全地从特定对象中删除处理程序(我已经提到过)。
为了完整起见,如果要将同一事件的多个处理程序附加到同一个对象,可以使用 命名空间事件:
从jQuery 1.7开始,方法
.on
和.off
是添加和删除事件处理程序的首选方法。为此,它们的行为与
.bind
和.unbind
完全相同,并且还可以处理命名空间事件。Your are attaching the event handlers to different elements, so you can safely remove the handler from the specific object (already mentioned I know).
For the sake of completeness, if you want to attach multiple handlers for the same event to the same object, you can use namespaced events:
Since jQuery 1.7, the methods
.on
and.off
are the preferred way to add and remove event handlers. For this purpose they behave exactly like.bind
and.unbind
and also work with namespaced events.jQuery 允许您绑定在第一次调用后将解除绑定的事件。如果您只想运行此 keyup 函数一次,请查看此处列出的 .one() 方法: http:// /api.jquery.com/one/
jQuery allows you to bind events that will be unbound after their first invocation. If you are looking to only run this keyup function once, look at the .one() method listed here: http://api.jquery.com/one/
如果某个元素上只有一个处理程序,则可以使用
unbind
安全地取消绑定它,而无需像 Nick Craver 建议的那样使用命名函数。在这种情况下,调用不会影响
document
上的处理程序。If you only have one handler on an element, you can safely unbind it using
unbind
without using named functions as Nick Craver suggests. In this case, callingwill not affect the handler on
document
.