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 に答える