码迷,mamicode.com
首页 > Web开发 > 详细

jquery Ajax请求中显示Loading...

时间:2015-06-12 06:24:41      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:

jquery Ajax请求中显示Loading...

$(‘#btnTest‘).click(function(){
     $.ajax({
          url ---- ,根据你需要设置url路径
          type:‘post‘,
          data:‘name=Test‘,
          timeout:15000,
          beforeSend:function(XMLHttpRequest){
              //alert(‘远程调用开始...‘);
              $("#loading").html.("<img src=‘/jquery/images/loading.gif‘ />");

       //显示文字 $("#loading").html.("<img src=‘/jquery/images/loading.gif‘ />");
         },
         success:function(data,textStatus){
             alert(‘开始回调,状态文本值:‘+textStatus+‘ 返回数据:‘+data);
             // $("#loading").empty();
           },
          complete:function(XMLHttpRequest,textStatus){
              // alert(‘远程调用成功,状态文本值:‘+textStatus);
             $("#loading").empty();
           },
           error:function(XMLHttpRequest,textStatus,errorThrown){
              alert(‘error...状态文本值:‘+textStatus+" 异常信息:"+errorThrown);
             $("#loading").empty();
          }
       });
    });

<div id="loading"></div>

< input type="button" id="btnTest" value="Test">

 

jquery Ajax请求中显示Loading...

标签:

原文地址:http://www.cnblogs.com/caojinqin/p/4570615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!