-1

ホストされたバージョンのヘッダーを使用する前に:

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

ダウンロードjQueryモバイルページで推奨されているように

今日、私はヘッダーのローカルバージョンを取得しようとしていました:

  1. http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.zipをダウンロードします。
  2. http://code.jquery.com/jquery-1.9.1.jsをダウンロードします。
  3. 最初のものを解凍し、すべてのファイルを jQuery フォルダーに入れます。
  4. 次に、index.html のメタ領域を変更します。

少なくとも同じ UI のルック アンド フィールが期待されます。

 <link rel="stylesheet" href="jQuery/jquery.mobile-1.3.1.min.css" />
    <script src="jQuery/jquery-1.9.1.min.js"></script>
    <script src="jQuery/jquery.mobile-1.3.1.min.js"></script>

残念ながら、テーマはありません-index.htmlは最小限のフォーマットで表示されました(CSSが適用されていないと思います)。どうしたの?

4

1 に答える 1

0

すべての質問に答える - 私のターゲットフォルダの内容は次のとおりです:

.:
images
index.html
jQuery
utils

./images:
post-logo-notitle-1.png
post-logo-notitle-2.png
post-logo-title-blue-1.png
post-logo-title-blue-2.png

./jQuery:
images
index.html
jquery-1.9.1.js
jquery.mobile-1.3.1.css
jquery.mobile-1.3.1.js
jquery.mobile-1.3.1.min.css
jquery.mobile-1.3.1.min.js
jquery.mobile-1.3.1.min.map
jquery.mobile.structure-1.3.1.css
jquery.mobile.structure-1.3.1.min.css
jquery.mobile.theme-1.3.1.css
jquery.mobile.theme-1.3.1.min.css

./jQuery/images:
ajax-loader.gif
icons-18-black.png
icons-18-white.png
icons-36-black.png
icons-36-white.png

./utils:
init.js
于 2013-04-19T04:30:02.600 に答える