0

初心者向けチュートリアルを試みています。

私の頭の中には次のようなものがあります。

<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
<linkrel="stylesheet"href="http://code.jquery.com/mobile/1.0.1/jquery.mobile1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>

私の結果は単なるテキストで、Jquery モバイル スタイルはありません。

4

1 に答える 1

3

モバイル CSS が適用されていませんか? その CSS リンクは無効です。リンクにハイフン (-) がありません:

正しい URL は次のとおりです: http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css

于 2012-04-09T17:26:03.530 に答える