为jQuery AJAX调用实现加载指示器


88

我有一个从链接启动的Bootstrap模式。在AJAX查询从数据库中获取数据的同时,它只停留在空白处约3秒钟。如何实现某种负载指示器?默认情况下,twitter引导程序是否提供此功能?

编辑:模态的JS代码

<script type="text/javascript">
  $('#myModal').modal('hide');
  $('div.divBox a').click(function(){
    var vendor = $(this).text();
    $('#myModal').off('show');
    $('#myModal').on('show', function(){             
      $.ajax({
        type: "GET",
        url: "ip.php",
        data: "id=" + vendor,
        success: function(html){
          $("#modal-body").html(html);
          $(".modal-header h3").html(vendor);
          $('.countstable1').dataTable({
            "sDom": "T<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
            "sPaginationType": "bootstrap",
            "oLanguage": {
              "sLengthMenu": "_MENU_ records per page"
            },
            "aaSorting":[[0, "desc"]],
            "iDisplayLength": 10,
            "oTableTools": {
              "sSwfPath": "swf/copy_csv_xls_pdf.swf",
              "aButtons": ["csv", "pdf"]
            }
          });
        }
      });
    });
  });
  $('#myModal').on('hide', function () {
    $("#modal-body").empty();
  });
</script>

Answers:


40

我猜您正在使用jQuery.get或其他jQuery ajax函数来加载模态。您可以在ajax调用之前显示指示器,并在ajax完成后将其隐藏。就像是

$('#indicator').show();
$('#someModal').get(anUrl, someData, function() { $('#indicator').hide(); });

164

我在以下示例中解决了相同的问题:

本示例使用jQuery JavaScript库。

首先,使用AjaxLoad网站创建一个Ajax图标。
然后将以下内容添加到您的HTML中:

<img src="/images/loading.gif" id="loading-indicator" style="display:none" />

然后将以下内容添加到您的CSS文件中:

#loading-indicator {
  position: absolute;
  left: 10px;
  top: 10px;
}

最后,您需要了解jQuery提供的Ajax事件。一个事件处理程序用于Ajax请求何时开始,另一个事件处理程序何时结束:

$(document).ajaxSend(function(event, request, settings) {
    $('#loading-indicator').show();
});

$(document).ajaxComplete(function(event, request, settings) {
    $('#loading-indicator').hide();
});

该解决方案来自以下链接。 如何在Ajax请求处理期间显示动画图标


+1为“仅执行一次”挂钩机制。但是,固定的加载指示器对于通常具有覆盖层的模态并不太好,该覆盖层会部分隐藏加载指示器……在这种情况下,最好将加载指示器放在模态内部,例如在标题栏中。还是可以向指标添加较高的z索引,使其显示在叠加层上方?
皮埃尔·亨利

3
嘿,所有...请参见基于此答案的演示
Paul Vargas 2015年

只需记住将这些脚本放在对JQuery脚本的引用之后。由于页面内的放置顺序相反,我只花了一个小时。
格雷格·Z。2015年

这听起来像ajaxStart()ajaxStop()将每批次AJAX是一个更好的解决方案为每@ajaristi答案,因为这些火只有一次:stackoverflow.com/questions/3735877/...
SharpC

30

使用jQuery进行全局配置。该代码在每个全局ajax请求上运行。

<div id='ajax_loader' style="position: fixed; left: 50%; top: 50%; display: none;">
    <img src="themes/img/ajax-loader.gif"></img>
</div>

<script type="text/javascript">
    jQuery(function ($){
        $(document).ajaxStop(function(){
            $("#ajax_loader").hide();
         });
         $(document).ajaxStart(function(){
             $("#ajax_loader").show();
         });    
    });    
</script>

这是一个演示:http : //jsfiddle.net/sd01fdcm/


1
这样效果很好,但不要忘记为使用模式的网站添加z-index CSS。
Deise Vicentin

1
这应该比@leansy答案正确使用时具有更多的投票数,.ajaxStart()并且ajaxStop()每个AJAX批处理都会触发一次投票:stackoverflow.com/questions/3735877/…
SharpC

14

加载指示符只是一个动画图像(.gif),显示该图像直到在AJAX请求上调用完成的事件为止。http://ajaxload.info/提供了许多用于生成可以叠加在模态上的加载图像的选项。据我所知,Bootstrap不提供内置功能。


6

这就是我如何处理需要刷新的远程内容的工作:

$(document).ready(function () {
    var loadingContent = '<div class="modal-header"><h1>Processing...</h1></div><div class="modal-body"><div class="progress progress-striped active"><div class="bar" style="width: 100%;"></div></div></div>';

    // This is need so the content gets replaced correctly.
    $("#myModal").on("show.bs.modal", function (e) {
        $(this).find(".modal-content").html(loadingContent);        
        var link = $(e.relatedTarget);
        $(this).find(".modal-content").load(link.attr("href"));
    });    

    $("#myModal2").on("hide.bs.modal", function (e) {
        $(this).removeData('bs.modal');
    });
});

基本上,只需在加载时将模式内容替换为加载消息即可。一旦完成加载,内容将被替换。


3

这就是我通过Glyphicon实现加载指示器的方式:

<!DOCTYPE html>
<html>

<head>
    <title>Demo</title>

    <link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css">
    <script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js"></script>
    <script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/bootstrap.min.js"></script>

    <style>
        .gly-ani {
          animation: ani 2s infinite linear;
        }
        @keyframes ani {
          0% {
            transform: rotate(0deg);
          }
          100% {
            transform: rotate(359deg);
          }
        }
    </style>  
</head>

<body>
<div class="container">

    <span class="glyphicon glyphicon-refresh gly-ani" style="font-size:40px;"></span>

</div>
</body>

</html>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.