我尝试这样做,而js正在创建一个时间表......它显示了微调器加载..
我尝试执行此操作$.mobile.pageLoading(); $.mobile.pageLoading(true);
并尝试使用此插件http://contextllc.com/tools/jQuery-showLoading
结果是一样的...它在生成时间表之后显示微调器..我不知道为什么......这里是我试图使用它的地方......
$('#timeDropList').change(function() {
$.mobile.pageLoading(false);
$('div.addedEntry').remove();
drawTemplate();
});
答案 0 :(得分:0)
您使用的是正确版本的jQuery Mobile吗?看起来他们在1.0b1中删除了pageLoading
方法,而采用了两种不同的方法:showPageLoadingMsg
和hidePageLoadingMsg
。我在pageLoading
看到的最后一个引用是1.0a4.1。
答案 1 :(得分:0)
$('#home').live('pagebeforecreate',function(event){
alert('This page was just enhanced by jQuery Mobile!');
$.mobile.loadingMessage = "pagebeforeshow Page...";
$.mobile.showPageLoadingMsg();
});