jquery ajax load() 时运行后台函数

发布于 2024-07-15 11:38:00 字数 179 浏览 8 评论 0原文

我正在使用 jquery 的 load() 将一些内容放入 div,并且我想在“后台”运行其他函数,直到 load() 完成。 该函数应该每 1 秒更新一次自定义 throbber,直到 $("#id").html() == "",其中 $("#id").html() 在 load() 完成后设置为 ""。 我有什么办法可以做到这一点吗?

I'm using jquery's load() to get some content into a div, and I want to run an other function in the "background" until load() finishes. That function should update a custom throbber every 1 second until $("#id").html() == "" where $("#id").html() is set to "" after load() finishes. Is there any way I can do that?

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

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

发布评论

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

评论(2

岁月苍老的讽刺 2024-07-22 11:38:00

您是否尝试过做您所描述的事情? 它应该像这样工作:

var interval = setInterval(function() {
    // update whatever you want
}, 1000);
$('#id').load('mypage.php', function() {
   clearInterval(interval);
});

Have you tried doing what you're describing? It should work like this:

var interval = setInterval(function() {
    // update whatever you want
}, 1000);
$('#id').load('mypage.php', function() {
   clearInterval(interval);
});
硪扪都還晓 2024-07-22 11:38:00

在执行 jQuery 加载命令之前执行该函数应该可以做到这一点,然后在加载回调函数中,设置 $("#id").html("")

Executing that function before executing the jQuery load command should do it, then in the load callback function, set $("#id").html("")

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