使用 AJAX 预加载

发布于 2024-12-05 13:04:21 字数 405 浏览 0 评论 0原文

我试图用这个脚本预加载整个网站:

   <script>
   $(function() {
   $('#body').addClass("none");
    $('#load').ajaxStart(function() {
    $(this).show();
  }).ajaxStop(function() {
    $(this).hide();
   });
  $('#body').removeClass("none");
 });
 </script>

我的身体有一个类“none”,它基本上是一个显示:无。 #load 是我明显的加载 div。它实际上运行时似乎存在问题,因为 #load 显示了整个时间,但在加载完成后实际上并没有摆脱自身。

有什么想法吗?

I am trying to preload the entire website with this script:

   <script>
   $(function() {
   $('#body').addClass("none");
    $('#load').ajaxStart(function() {
    $(this).show();
  }).ajaxStop(function() {
    $(this).hide();
   });
  $('#body').removeClass("none");
 });
 </script>

My body has a class "none" which is basically a display:none. The #load is my obvious loading div. It seems like there is an issue it actually running because #load shows the entire time, doesn't actually get rid of itself when its done loading.

Any ideas?

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

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

发布评论

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

评论(1

忘你却要生生世世 2024-12-12 13:04:21

我测试了你的代码,它工作没有问题。

仅当所有 ajax 请求已返回或被取消时,ajaxStop 才会被调用。因此,您的请求之一必须被挂起。另一种可能性是请求引发了异常(例如跨域 - 请参阅此处)。

I tested your code and it worked without problems.

ajaxStop only gets called when all ajax requests have returned or been cancelled. One of your requests must therefore be hanging. Another possibility is that the request threw an exception (cross domain for example - see here).

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