jquery ajax load() 时运行后台函数
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过做您所描述的事情? 它应该像这样工作:
Have you tried doing what you're describing? It should work like this:
在执行 jQuery 加载命令之前执行该函数应该可以做到这一点,然后在加载回调函数中,设置
$("#id").html("")
Executing that function before executing the jQuery load command should do it, then in the load callback function, set
$("#id").html("")