如何使用jquery检测我的浏览器忙或等待状态

时间:2015-07-21 08:21:42

标签: javascript jquery html css

我需要使用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>

1 个答案:

答案 0 :(得分:1)

jquery ajax beforeSendcomplete

中有两件事

像这样对您的代码进行更改

$(function() {
$.ajax({
    type: "GET",
    url: "sync_bills.php",
    beforeSend : function(){
        $("#loader").show();
    },
    success: function(resp) {
        $("#results").html(resp);
    },
   complete: function(resp) {
        $("#loader").hide();
    },
  });
 });

如果我需要装载机,这对我有用