jQuery Unbind() 函数中的所有内容?
所以我有一个像这样的函数
function onLoadMe() {
//stuff in function
}
,第二个函数
function onLoadMeSecond() {
//stuff in function
}
我想尝试在页面加载时绑定 onLoadMe()
,但然后取消绑定 onLoadMe()
中的所有内容并加载元素的第二个函数 onLoadMeSecond()
?
即,
jQuery('#some-id').click(function() {
jQuery(this).unbind(onLoadMe());
onLoadMeSecond();
});
由于上述方法不起作用,我该如何执行此操作?
编辑:参见示例 http://jsfiddle.net/cer9R/5/
So I have a function like
function onLoadMe() {
//stuff in function
}
And a second function
function onLoadMeSecond() {
//stuff in function
}
I want to try and bind the onLoadMe()
on the page load, but then unbind everything in onLoadMe()
and load the second function onLoadMeSecond()
for the element ?
i.e.
jQuery('#some-id').click(function() {
jQuery(this).unbind(onLoadMe());
onLoadMeSecond();
});
How can I do this as the above doesn't work ?
Edit: See example http://jsfiddle.net/cer9R/5/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正确的语法是
$(window).unbind('load',onLoadMe)
。尽管在 JsFiddle 示例中,您在文档就绪时绑定处理程序,而不是页面加载。要取消绑定,您可以使用
$(document).unbind('ready')
。当然,使用文档就绪事件来绑定单击处理程序,这将取消绑定(已经完成的)文档就绪处理程序,这是毫无意义的。The correct syntax is
$(window).unbind('load',onLoadMe)
.Though in the JsFiddle example you are binding a handler on document ready, not page load. To unbind that, you could use
$(document).unbind('ready')
. Of course, using the document ready event to bind a click handler which would unbind the (already finished) document ready handler makes no sense at all.你尝试这样写吗?
或者也许只是这个
did u try write like this?
or maybe just this
从取消绑定参数中删除
()
:onLoadMe
而不是onLoadMe()
Remove the
()
from the unbind parameter:onLoadMe
instead ofonLoadMe()