等待结果时使用动画 .gif .load()

发布于 2024-11-09 02:40:17 字数 237 浏览 0 评论 0原文

我正在使用 jquery .load() 方法在 div 中加载搜索结果,如下所示(简化版本)

$('#resultscontainer').load("results.php", {data: data});

最终结果将需要发送更多数据,并且可能需要等待时间才能将结果加载到 div 中。在处理数据时,是否可以在 div“resultscontainer”中显示动画 gif(如旋转图标)?

I am using jquery .load() method to load results of a search within a div like so (dumbed down version)

$('#resultscontainer').load("results.php", {data: data});

The end result will require more data to be sent and a potential waiting time for the results to be loaded into the div. Is it possible to have an animated gif (like a spinning icon) show within the div "resultscontainer" while it is processing the data?

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

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

发布评论

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

评论(1

冰雪梦之恋 2024-11-16 02:40:17

Sup lvinzlife

yea of​​c 在 jquery 中为此有特殊事件 :D

$("#loading").ajaxStart(function(){
  $(this).show();
});

$("#loading").ajaxStop(function(){
  $(this).hide();
});

其中 #loading 是你的 gif 例如: http://www .ajaxload.info/

Sup livinzlife

yea ofc there is special events in jquery for this :D

$("#loading").ajaxStart(function(){
  $(this).show();
});

$("#loading").ajaxStop(function(){
  $(this).hide();
});

where #loading is your gif for example: http://www.ajaxload.info/

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