0

我遇到了这个人描述的同样的问题。showPageLoadingMsg() 上的微调器永远不会旋转!没有人回答他的问题,所以我没有什么可继续的。A 有人有什么想法吗?

    $.mobile.loadingMessageTextVisible = true;
    $.mobile.loadingMessage = "please wait...";
    $.mobile.showPageLoadingMsg();

编辑:这是我用来在我的页面中包含 jquery mobile 和 jquery 的代码:

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>   
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
4

1 回答 1

3

我升级到 jquery mobile 1.1.0,现在一切似乎都运行良好。这是我用于可能遇到此问题的其他任何人的代码:

在标题中:

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>

js:

$.mobile.loadingMessageTextVisible = true;
$.mobile.loadingMessage = "please wait...";
$.mobile.showPageLoadingMsg();
于 2012-04-27T14:13:17.700 回答