jQuery Unbind() 函数中的所有内容?

发布于 2024-11-26 20:41:08 字数 587 浏览 0 评论 0原文

所以我有一个像这样的函数

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 技术交流群。

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

发布评论

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

评论(3

耀眼的星火 2024-12-03 20:41:08

正确的语法是$(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.

层林尽染 2024-12-03 20:41:08

你尝试这样写吗?

 jQuery(this).unbind("onLoadMe");

或者也许只是这个

 jQuery(this).unbind();

did u try write like this?

 jQuery(this).unbind("onLoadMe");

or maybe just this

 jQuery(this).unbind();
欢烬 2024-12-03 20:41:08

从取消绑定参数中删除 ()

jQuery('#some-id').click(function() {
   jQuery(this).unbind(onLoadMe);
   onLoadMeSecond();
});

onLoadMe 而不是 onLoadMe()

Remove the () from the unbind parameter:

jQuery('#some-id').click(function() {
   jQuery(this).unbind(onLoadMe);
   onLoadMeSecond();
});

onLoadMe instead of onLoadMe()

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