onLoading: showLoad, onComp"/>

如何显示jQuery中的加载微调器?

如何显示jQuery中的加载微调器?

How to show loading spinner in jQuery?

在原型中,我可以使用以下代码显示"正在加载..."图像:

1
2
3
4
5
6
var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars,
onLoading: showLoad, onComplete: showResponse} );

function showLoad () {
    ...
}

在jQuery中,我可以使用以下命令将服务器页面加载到元素中:

1
$('#message').load('index.php?pg=ajaxFlashcard');

但是如何像在Prototype中一样将加载微调器附加到此命令?


有两种方法。我的首选方法是将一个函数附加到元素本身上的ajaxStart / Stop事件。

1
2
3
4
5
6
7
8
9
$('#loadingDiv')
    .hide()  // Hide it initially
    .ajaxStart(function() {
        $(this).show();
    })
    .ajaxStop(function() {
        $(this).hide();
    })
;

每当您执行任何Ajax调用时,ajaxStart / Stop函数都会触发。

更新:从jQuery 1.8开始,文档指出.ajaxStart/Stop仅应附加到document。这会将上面的代码段转换为:

1
2
3
4
5
6
7
8
var $loading = $('#loadingDiv').hide();
$(document)
  .ajaxStart(function () {
    $loading.show();
  })
  .ajaxStop(function () {
    $loading.hide();
  });

对于jQuery,我使用

1
2
3
4
5
6
7
8
9
jQuery.ajaxSetup({
  beforeSend: function() {
     $('#loader').show();
  },
  complete: function(){
     $('#loader').hide();
  },
  success: function() {}
});


您可以只使用jQuery的.ajax函数并使用其选项beforeSend并定义一些函数,在其中可以显示类似loader div的内容,而在成功选项中可以隐藏该loader div。

1
2
3
4
5
6
7
8
9
10
11
jQuery.ajax({
    type:"POST",
    url: 'YOU_URL_TO_WHICH_DATA_SEND',
    data:'YOUR_DATA_TO_SEND',
    beforeSend: function() {
        $("#loaderDiv").show();
    },
    success: function(data) {
        $("#loaderDiv").hide();
    }
});

您可以具有任何Spinning Gif图像。这是一个根据您的配色方案是出色的AJAX Loader Generator的网站:http://ajaxload.info/


您可以在AJAX调用之前将动画图像插入DOM中,并执行内联函数将其删除...

1
2
3
4
$("#myDiv").html('<img src="images/spinner.webp" alt="Wait" />');
$('#message').load('index.php?pg=ajaxFlashcard', null, function() {
  $("#myDiv").html('');
});

这将确保您的动画在后续请求中从同一帧开始(如果重要)。请注意,旧版本的IE可能在动画方面存在困难。

祝好运!


1
2
3
4
5
6
7
$('#message').load('index.php?pg=ajaxFlashcard', null, showResponse);
showLoad();

function showResponse() {
    hideLoad();
    ...
}

http://docs.jquery.com/Ajax/load#urldatacallback


如果您使用的是$.ajax(),则可以使用以下内容:

1
2
3
4
5
6
7
8
9
10
$.ajax({
        url:"destination url",
        success: sdialog,
        error: edialog,
        // shows the loader element before sending.
        beforeSend: function () { $("#imgSpinner1").show(); },
        // hides the loader after completion of request, whether successfull or failor.            
        complete: function () { $("#imgSpinner1").hide(); },            
        type: 'POST', dataType: 'json'
    });

使用加载插件:http://plugins.jquery.com/project/loading

1
$.loading.onAjax({img:'loading.webp'});

变体:我在主页的左上方有一个带有id =" logo"的图标;然后,当ajax工作时,微调gif会覆盖在顶部(透明)。

1
2
3
4
5
6
7
8
9
jQuery.ajaxSetup({
  beforeSend: function() {
     $('#logo').css('background', 'url(images/ajax-loader.webp) no-repeat')
  },
  complete: function(){
     $('#logo').css('background', 'none')
  },
  success: function() {}
});

最后,我对原始回复进行了两项更改。

  • 从jQuery 1.8开始,ajaxStart和ajaxStop应该仅附加到<??x1>。这使得仅过滤一些ajax请求变得更加困难。 o
  • 切换到ajaxSend和ajaxComplete可以在显示微调器之前检查当前的ajax请求。
  • 这些更改之后的代码是:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    $(document)
        .hide()  // hide it initially
        .ajaxSend(function(event, jqxhr, settings) {
            if (settings.url !=="ajax/request.php") return;
            $(".spinner").show();
        })
        .ajaxComplete(function(event, jqxhr, settings) {
            if (settings.url !=="ajax/request.php") return;
            $(".spinner").hide();
        })

    我也想为这个答案做贡献。我一直在寻找与jQuery类似的东西,而最终我使用了这个东西。

    我从http://ajaxload.info/获得了加载微调器。我的解决方案基于以下简单答案:http://christierney.com/2011/03/23/global-ajax-loading-spinners/。

    基本上,您的HTML标记和CSS如下所示:

    1
    2
    3
    4
    5
    6
    7
    8
    <style>
         #ajaxSpinnerImage {
              display: none;
         }
    </style>


         <img src="~/Content/ajax-loader.webp" id="ajaxSpinnerImage" title="working..." />

    然后,您的jQuery代码将如下所示:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
         $(document).ready(function () {
              $(document)
              .ajaxStart(function () {
                   $("#ajaxSpinnerImage").show();
              })
              .ajaxStop(function () {
                   $("#ajaxSpinnerImage").hide();
              });

              var owmAPI ="http://api.openweathermap.org/data/2.5/weather?q=London,uk&APPID=YourAppID";
              $.getJSON(owmAPI)
              .done(function (data) {
                   alert(data.coord.lon);
              })
              .fail(function () {
                   alert('error');
              });
         });

    它是如此简单 :)


    您可以简单地将加载程序映像分配给同一标签,稍后使用Ajax调用在该标签上加载内容:

    1
    2
    3
    $("#message").html('<span>Loading...</span>');

    $('#message').load('index.php?pg=ajaxFlashcard');

    您也可以将span标签替换为image标签。


    除了为ajax事件设置全局默认值之外,还可以为特定元素设置行为。也许仅仅改变他们的班级就足够了吗?

    1
    2
    3
    4
    5
    6
    $('#myForm').ajaxSend( function() {
        $(this).addClass('loading');
    });
    $('#myForm').ajaxComplete( function(){
        $(this).removeClass('loading');
    });

    CSS示例,使用微调器隐藏#myForm:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    .loading {
        display: block;
        background: url(spinner.webp) no-repeat center middle;
        width: 124px;
        height: 124px;
        margin: 0 auto;
    }
    /* Hide all the children of the 'loading' element */
    .loading * {
        display: none;  
    }

    请注意,必须使用异步调用来使微调器起作用(至少这是导致我的问题直到ajax调用之后才显示,然后随着调用结束并移除微调器而迅速消失的原因)。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    $.ajax({
            url: requestUrl,
            data: data,
            dataType: 'JSON',
            processData: false,
            type: requestMethod,
            async: true,                         <<<<<<------ set async to true
            accepts: 'application/json',
            contentType: 'application/json',
            success: function (restResponse) {
                // something here
            },
            error: function (restResponse) {
                // something here                
            }
        });

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    $('#loading-image').html('<img src="/images/ajax-loader.webp"> Sending...');

            $.ajax({
                url:  uri,
                cache: false,
                success: function(){
                    $('#loading-image').html('');          
                },

               error:   function(jqXHR, textStatus, errorThrown) {
                var text = "Error has occured when submitting the job:"+jqXHR.status+" Contact IT dept";
               $('#loading-image').html('<span style="color:red">'+text +'  </span>');

                }
            });

    我在jQuery UI对话框中使用了以下内容。 (也许它可以与其他ajax回调一起使用?)

    1
    2
    3
    4
    5
    $('<img src="/i/loading.webp" id="loading" />').load('/ajax.html').dialog({
        height: 300,
        width: 600,
        title: 'Wait for it...'
    });

    包含一个动画加载gif,直到ajax调用完成后其内容被替换。


    这对我来说是最好的方法:

    jQuery的:

    1
    2
    3
    4
    5
    6
    7
    $(document).ajaxStart(function() {
      $(".loading").show();
    });

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

    咖啡:

    1
    2
    3
    4
    5
      $(document).ajaxStart ->
        $(".loading").show()

      $(document).ajaxStop ->
        $(".loading").hide()

    文件:ajaxStart,ajaxStop


    的JavaScript

    1
    2
    3
    4
    5
    6
    7
    $.listen('click', '#captcha', function() {
        $('#captcha-block').html('');
        $.get("/captcha/new", null, function(data) {
            $('#captcha-block').html(data);
        });
        return false;
    });

    的CSS

    1
    #loading { background: url(/image/loading.webp) no-repeat center; }

    这是一个非常简单而聪明的插件,用于特定目的:
    https://github.com/hekigan/is-loading


    我的ajax代码看起来像这样,实际上,我刚刚注释掉了async:错误的行,并且显示了spinner。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    $.ajax({
            url:"@Url.Action("MyJsonAction","Home")",
            type:"POST",
            dataType:"json",
            data: {parameter:variable},
            //async: false,

            error: function () {
            },

            success: function (data) {
              if (Object.keys(data).length > 0) {
              //use data
              }
              $('#ajaxspinner').hide();
            }
          });

    我在ajax代码之前的函数中显示微调器:

    1
    2
    $("#MyDropDownID").change(function () {
            $('#ajaxspinner').show();

    对于HTML,我使用了很棒的字体类:

    推荐阅读