我使用jquery mobile的加载器来处理所有的ajax查询,但只有一种情况,我希望隐藏加载器。
有办法吗?
答案 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
}
}
});
}