在我使用托管版本的标头之前:
<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>
今天我试图获取标题的本地版本:
- 下载http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.zip。
- 下载http://code.jquery.com/jquery-1.9.1.js。
- 解压缩第一个并将所有文件放入 jQuery 文件夹。
- 然后更改我的 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)。怎么了?