-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 回答