-2

大家好,我想使用 $.ajaxstart() 和 $.ajaxcomplete() 在 ajax 调用期间显示加载面板,任何人都可以给我一段代码

4

1 回答 1

1

您提供的信息很少,所以我只是尝试通过使用beforeSendanddone事件来处理您的请求,为您提供另一种处理方式。

$.ajax({
  url: "demo.html",
  beforeSend: function ( xhr ) {
       // Make your init action of the progress
  }
}).done(function ( data ) {
      // End action of the progress
});

您可以在此处的 jQuery 文档中找到任何内容:http: //api.jquery.com/jQuery.ajax/和此处http://api.jquery.com/Ajax_Events/

于 2013-01-10T02:41:48.277 回答