当我显示 GIF 时,GIF 加载停止

发布于 2024-09-19 18:56:57 字数 266 浏览 5 评论 0原文

看这个代码:

$('#loader').show();
$.post( '/action.php', function( data ) {  
// do anything with data
$('#loader').hide(); 
}  );

加载器 DIV 有一个模拟加载状态的 GIF 图像,该代码运行良好,但 GIF 在等待数据时停止(调用后)...

我希望 gif 独立于执行中的其他代码移动。我希望你能理解我的问题..

Look this code:

$('#loader').show();
$.post( '/action.php', function( data ) {  
// do anything with data
$('#loader').hide(); 
}  );

The loader DIV has a GIF image simulating loading state, This code works well but the GIF stops when is waiting the data (post called) ...

I want the gif moves ever independently of the other codes in execution.. I hope you understand my problem..

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

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

发布评论

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

评论(1

凉宸 2024-09-26 18:56:57

我相信您想要 jQuery 文档网站上的示例中列出的行为。

jQuery:ajaxStart

您可以使用 ajaxStop 事件处理程序隐藏图像。

I believe you want the behavior listed in the example on the jQuery documentation website.

jQuery:ajaxStart

You can hide the image with the ajaxStop event handler.

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