我正在导航到 jQuery Mobile 应用程序中的外部 html 页面。该页面需要一段时间加载我想同时显示加载器但它不起作用..这是我尝试过的..
$(document).ajaxStart(function() {
// $.mobile.loading('show');
$.mobile.loading( "show", {
text: 'Please Wait!',
textVisible: 'true',
theme: "b",
textonly: 'true',
html: ''
});
});
$(document).ajaxStop(function() {
$.mobile.loading('hide');
});
我知道 rel="external" 禁用 ajax,有什么方法可以显示这个加载程序打开外部链接..?