JQuery:重新绑定 $(document).Ready()

发布于 2024-12-31 23:31:40 字数 413 浏览 2 评论 0原文

一旦触发 document.ready() ,JQuery 就会解除绑定 $(document).ready()

jQuery( document ).trigger( "ready" ).unbind( "ready" );

我想重新绑定 $(document).ready() 以便我可以手动调用它(调用 jQuery.ready()jQuery(document) .trigger("ready")) 在我的辅助函数中。

我可以编写一个单独的函数并在文档就绪和帮助程序中调用两者,但我不能这样做,因为我想编写一个可以在任何页面上使用的通用帮助程序。

知道怎么做吗?

JQuery unbinds the $(document).ready() once the document.ready() is triggered.

jQuery( document ).trigger( "ready" ).unbind( "ready" );

I want to rebind the the $(document).ready() so that I can call it manually ( calling jQuery.ready() OR jQuery(document).trigger("ready")) in my helper function.

I can write a separate function and call both in document ready and the helper but I can not do that as I want to write a generic helper that can be used on any page.

Any Idea how to do it?

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

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

发布评论

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

评论(2

戴着白色围巾的女孩 2025-01-07 23:31:41

这听起来不是一个好主意,任何第三方插件如果多次看到就绪事件都可能表现不佳。有一个jQuery.holdReady(),您可以使用它让 jQuery 等待,直到您给予它批准。

That does not sound like a good idea, any third-party plugins may behave badly if they see a ready event more than once. There is a jQuery.holdReady() that you can use to make jQuery wait until you've given it the go-ahead.

寻找我们的幸福 2025-01-07 23:31:41

如果您想多次触发 .ready() 方法内部的逻辑,只需将逻辑放在您自己的方法中即可:

$(document).ready(function() {
  myReadyFunction(); // Called when the DOM is ready
});

function myReadyFunction() { // Called when the DOM is ready & whenever you want
    //Do stuff
}

If you want to trigger the logic inside the .ready() method multiple times, simply place the logic in your own method:

$(document).ready(function() {
  myReadyFunction(); // Called when the DOM is ready
});

function myReadyFunction() { // Called when the DOM is ready & whenever you want
    //Do stuff
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文