简介
概念
- jQuery Mobile 是一种 web 框架,用于创建移动 web 应用程序。
- jQuery Mobile 是一个为触控优化的框架,用于创建移动 web 应用程序。
- jQuery 适用于所有流行的智能手机和平板电脑:
- jQuery Mobile 构建于 jQuery 库之上,这使其更易学习,如果您通晓 jQuery 的话。
- 它使用 HTML5、CSS3、JavaScript 和 AJAX 通过尽可能少的代码来完成对页面的布局。
- 由于是使用HTML5和CSS3的,所以在调试的时候必须使用能支持HTML5和CSS3的浏览器,最好使用最新的谷歌(Google Chrome)浏览器来进行开发调试。
官网
下载地址
1.4.5版本下载地址
http://jquerymobile.com/resources/download/jquery.mobile-1.4.5.zip
安装
都是在页面中使用的所以直接引入就可以了
使用CND引入
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
下载解压后引入
<link rel="stylesheet" href="./mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="./js/jquery-1.11.1.min.js"></script>
<script src="./mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
网友评论