Jquery Ajax加载图片

前端之家收集整理的这篇文章主要介绍了Jquery Ajax加载图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想实现一个加载图像我的jquery ajax代码(这是当jquery仍在处理)下面是我的代码
$.ajax({
    type: "GET",url: surl,dataType: "jsonp",cache : false,jsonp : "onJSONPLoad",jsonpCallback: "newarticlescallback",crossDomain: "true",success: function(response) {
        alert("Success");
    },error: function (xhr,status) { 
        alert('Unknown error ' + status);
    }   
});

如何在此代码中实现加载图像。
谢谢

解决方法

尝试这样:
<div id="LoadingImage" style="display: none">
  <img src="" />
</div>

<script>
  function ajaxCall(){
    $("#LoadingImage").show();
      $.ajax({ 
        type: "GET",success: function(response) { 
          $("#LoadingImage").hide();
          alert("Success"); 
        },status) {  
          $("#LoadingImage").hide();
          alert('Unknown error ' + status); 
        }    
      });  
    }
</script>
原文链接:https://www.f2er.com/jquery/184665.html

猜你在找的jQuery相关文章