解决方法
真的很简单你有一个图像,最初隐藏:
<img src="myloadingimage.gif" style="display: none;" id="loading_image">
你做一个AJAX请求:
$('#loading_image').show(); // show loading image,as request is about to start $.ajax({ url: '..',type: '..',complete: function() { // request is complete,regardless of error or success,so hide image $('#loading_image').hide(); } });
我答应不是火箭科学. 原文链接:https://www.f2er.com/js/152400.html