禁用某些ajax查询的加载程序(JqueryMobile)

时间:2015-07-31 09:48:19

标签: jquery-mobile

我使用jquery mobile的加载器来处理所有的ajax查询,但只有一种情况,我希望隐藏加载器。

有办法吗?

1 个答案:

答案 0 :(得分:1)

function getData (urlPath, showLoading) {
    $.ajax({
        url : urlPath,
        dataType: 'script',
        beforeSend : function(xhr, opts){
            if(showLoading) 
            {
               //call loading code
            }
        },
        success: function(data) {
            //success logic here
        },
        error: function(xhr, status) {
            // error handling here
        },
        complete: function(){
            console.log('DONE');
            if (showLoading)
            {
                //stop the display of loading in complete method
            }
        }
    });
}