$(document).ready() 完成后如何触发某些内容?

发布于 2024-11-07 17:40:50 字数 183 浏览 0 评论 0原文

有没有办法让您的函数作为 $(document).ready() 队列中的最后一个函数被调用,或者有没有办法在完成后触发事件?

我主要想看看 $(document).ready() 是否触发了某些内容,如果没有,则在之后触发它。如果我将此代码放入准备好的文档中,则不能保证它会最后执行,因此可能会导致多次检查。

Is there a way to have your function be called as the LAST in the $(document).ready() queue or, is there a way to trigger an event once this has completed?

I want to essentially see if something was fired by $(document).ready() and, if not, fire it after wards. If I put this code into document ready then there is no guarantee it will execute last so could result in multiple checks.

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

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

发布评论

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

评论(3

吃兔兔 2024-11-14 17:40:51

您可以在函数被触发时设置一个全局变量,并在再次运行之前进行检查:

例如,

function myFunc()
{
    if (myFuncHasFired)
        return;
    myFuncHasFired = true;
    //your func code here
}

这并不能保证您的函数将最后运行,但满足我认为您的真正要求,即该函数不会在一次运行多次要求。

You can set a global variable when your function is fired, and check that before running it again:

E.g.,

function myFunc()
{
    if (myFuncHasFired)
        return;
    myFuncHasFired = true;
    //your func code here
}

This does not guarantee your function will run last, but satisfies what I think is your real requirement that the function not run multiple times in one request.

江湖彼岸 2024-11-14 17:40:51

在代码末尾添加另一个 $(document).ready() 块。 jQuery 按照它看到的顺序执行它们,因此,如果您在代码末尾放置另一个块,则应在另一个块完成后调用它。

Add another $(document).ready() block to the end of your code. jQuery executes them in the order it sees them, so if you put another block at the end of the code, it should be called after the other finishes.

橘亓 2024-11-14 17:40:51

这听起来像是readyX插件的完美用例: http://plugins.jquery.com/project/readyx

该插件为应该最后发生的就绪事件提供了一个队列。

This sounds like the perfect use case for the readyX plugin: http://plugins.jquery.com/project/readyx

The plugin provides a queue for ready events that should happen last.

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