3

如何在加载网站布局中的所有图像之前显示 ajax 指示器?

提前致谢。

4

1 回答 1

1

使用 jQuery。请。

    $("#loading").ajaxStart(function() {
        $(this).show();
    });
    $("#loading").ajaxStop(function() {
        $(this).addClass('ohmy').hide('slow');
    });
于 2009-11-11T14:03:33.327 回答