如何在调用 ajax 时隐藏页面并显示正在加载的 div

发布于 2025-01-02 13:50:49 字数 499 浏览 2 评论 0原文

我想在用户单击按钮时隐藏所有页面,在页面中心显示一个带有加载 gif 的 div,并对页面调用 ajax 请求。当ajax完成隐藏阴影时,隐藏加载div。有可能吗?有人可以解释一下怎么做吗? 我看到这里这段代码:$

("#btnLoad").click(function(){

  // Put an animated GIF image insight of content
  $("#content").empty().html('<img src="loading.gif" />');

  // Make AJAX call
  $("#content").load("http://example.com");
});

我可以用这个吗?我可以在哪里拍摄影子?

i want to shadow all the page when user clicks a button, show a div in the center of page with a loading gif and call an ajax request to a page. When ajax finishes hide shadow, hide loading div. is possible? can someone explain me how?
i see here this code:$

("#btnLoad").click(function(){

  // Put an animated GIF image insight of content
  $("#content").empty().html('<img src="loading.gif" />');

  // Make AJAX call
  $("#content").load("http://example.com");
});

can i use this? where i can take shadow?

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

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

发布评论

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

评论(2

万劫不复 2025-01-09 13:50:49
  1. 使用 css:position:fixed 创建新的 div (id:loader); z 指数:90;顶部:0;左:0;背景:rgba(0,0,0,0.5);将其放在 body 部分的 和 处
  2. 用 css 创建新的 div:margin: 30% auto;宽度:200px;高度:60 像素;背景:#fff;将其放入第一点创建的div中。将文本“正在加载...”或其他内容放入其中。
  3. 创建 js 函数,该函数将在开始加载时从第一个点显示 div 并在加载结束时隐藏它。

例如,

function loadingOn() {
    $('#loader').fadeIn(300);
}

function loadingOff() {
    $('#loader').fadeOut(300);
}

function loadingToggle() {
    $('#loader').fadeToggle(300);
}

您必须仅在需要时调用该函数:)

  1. Create new div (id: loader) with css: position: fixed; z-index: 90; top: 0; left: 0; background: rgba(0,0,0,0.5); Put it at the and of the body section
  2. Create new div with css: margin: 30% auto; width: 200px; height: 60px; background: #fff; Put it into div created in first point. Put into it text 'Loading...' or sth else.
  3. Create js functions which will show div from first point at start loading and hide it at the end of the loading.

E.g.

function loadingOn() {
    $('#loader').fadeIn(300);
}

function loadingOff() {
    $('#loader').fadeOut(300);
}

function loadingToggle() {
    $('#loader').fadeToggle(300);
}

You must only call that functions when you need it :)

黯淡〆 2025-01-09 13:50:49

查找 jQuery 的 colorbox。这将通过一个简单的轻量级库添加到您已经使用的 jQuery 中来完成您想要的一切。

http://jacklmoore.com/colorbox/


Look up colorbox for jQuery. This will do everything you want with a simple light weight library addition to jQuery which you're already using.

http://jacklmoore.com/colorbox/

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