我需要使用Jquery检测我的浏览器处于等待状态或繁忙状态,并且还要实现加载程序。我已经使用了下面的代码
<script type="text/javascript" src="/assets/script/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
$(function() {
$.ajax({
type: "GET",
url: "sync_bills.php",
success: function(resp) {
$("#results").html(resp);
}
});
});
</script>
<div id="results"><img src="images/loading.gif" width="16" height="16" alt="Loading..." /></div>
答案 0 :(得分:1)
jquery ajax beforeSend
和complete
像这样对您的代码进行更改
$(function() {
$.ajax({
type: "GET",
url: "sync_bills.php",
beforeSend : function(){
$("#loader").show();
},
success: function(resp) {
$("#results").html(resp);
},
complete: function(resp) {
$("#loader").hide();
},
});
});
如果我需要装载机,这对我有用