当我显示 GIF 时,GIF 加载停止
看这个代码:
$('#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您想要 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.