使用jQuery延迟显示ajax加载gif

时间:2009-12-05 08:18:34

标签: jquery

延迟显示ajax-loader gif的最佳方法是什么?当我点击按钮时,加载器gif显示并隐藏即使所花费的时间是几百毫秒,这也会给浏览器带来一种闪烁。我想要的是说只显示gif,如果完成ajax请求需要超过1000毫秒。

 <script type="text/javascript">
     $(document).ready(function() {
         $('#loader').hide();
         $('#btnGetPeople').click(function() {
            $('#loader').show();
             $.getJSON("/User/GetName/10",
                null,
                function(data) { showPerson(data); });
         });
     });

     function showPerson(data) {
         alert(data);
         $('#loader').hide();
     }
</script>

我的装载机div包含....

<div id="loader"><img alt="" src="/content/ajax-loader.gif" /></div>

实现这一目标的最佳技术是什么?

4 个答案:

答案 0 :(得分:22)

正如你所看到的,我添加了一个延迟,延迟显示300毫秒。如果ajax更快,则在加载器真正显示之前取消超时。

<script type="text/javascript">
    var showLoader;
    $(document).ready(function() {
        $('#loader').hide();
        $('#btnGetPeople').click(function() {
            // only show loader if ajax request lasts longer then 300 ms
            showLoader = setTimeout("$('#loader').show()", 300);
            $.getJSON("/User/GetName/10",
                null,
                function(data) { showPerson(data); });
        });
    });

    function showPerson(data) {
        clearTimeout(showLoader);
        alert(data);
        $('#loader').hide();
    }
</script>

答案 1 :(得分:5)

这是一种有趣的方式。将$loader.show()替换为:

$("#loader").data('timeout', window.setTimeout(function(){ $("#loader").show()}, 1000));

你的隐藏命令:

window.clearTimeout($("#loader").hide().data('timeout'));

答案 2 :(得分:1)

你也可以这样做。

var loadingTimer;

$(document).ready(function () {

    $("#loader").ajaxStart(function () {
        loadingTimer = setTimeout(function () {
            $("#loader").show();
        }, 200);
    });

    $("#loader").ajaxStop(function () {
        clearTimeout(loadingTimer);
        $(this).hide();
    });

}

答案 3 :(得分:0)

以为我会分享一些我为此所做的事情。我有一种情况,我需要做的不仅仅是显示或隐藏一个元素。所以我使用bind为加载器创建自定义事件:

$("#loader").bind("delayshow", function (event, timeout) {
    var $self = $(this);
    $self.data('timeout', setTimeout(function () {
        // show the loader
        $self.show();
        /* 
            implement additional code here as needed
        */
    }, timeout));
}).bind("delayhide", function (event) {
    // close and clear timeout
    var $self = $(this);
    clearTimeout($self.hide().data('timeout')); 
    /*
        implement additional code here as needed 
    */
});

// show it with a 500 millisecond delay
$("#loader").trigger('delayshow', 500);

// hide it
$("#loader").trigger('delayhide');