(01)创建第一个jQuery Mobile页面
Posted 尩者諷范的天空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(01)创建第一个jQuery Mobile页面相关的知识,希望对你有一定的参考价值。
jQuery Mobile 是一个适配pc端和移动端的前台开放框架,当然很多时候主要用于移动端的开发。怎样搭建一个jQuery Mobile的开发环境呢?其实很简单,我们只需要引入的css、js和images等资源文件即可。
引入这些资源文件有两个方法:
1.从 CDN 中引入 jQuery Mobile
这个方法比较简单,你只需要引入css和js文件即可,不需要引入images文件,它们都已经存放在cdn服务器上了,当然这样不好的地方就是你不可以修改图片或者是js和css文件了。
<!--jQuery Mobile CDN:-->
<!-- 引入 jQuery Mobile 样式 --> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> <!-- 引入 jQuery 库 --> <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <!-- 引入 jQuery Mobile 库 --> <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<!--jQuery Mobile CDN(百度):-->
<!-- 引入 jQuery Mobile 样式 --> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> <!-- 引入 jQuery 库 --> <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <!-- 引入 jQuery Mobile 库 --> <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
2. jQuery Mobile官网下载资源文件
下载地址:http://jquerymobile.com/download/
下载之后得到一个压缩文件,解压后选择我们需要的文件放到我们的项目中。
<head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="jquery.mobile-1.4.5.css"> <script src="jquery.js"></script> <script src="jquery.mobile-1.4.5.js"></script> </head>
创建第一个jQuery Mobile页面
<!DOCTYPE html> <html> <head> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <title>第一个jQuery Mobile Web</title> <link href="css/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"/> <script src="js/jquery-1.6.4.min.js" type="text/javascript"></script> <script src="js/jquery.mobile-1.0.min.js" type="text/javascript"></script> </head> <body> <div data-role="page" id="page"> <div data-role="header"> <h1>第 1 页</h1> </div> <div data-role="content"> <ul data-role="listview"> <li><a href="#page2">第 1 页</a></li> <li><a href="#page3">第 2 页</a></li> <li><a href="#page4">第 3 页</a></li> <li><a href="#page4">第 4 页</a></li> </ul> </div> <div data-role="footer"> <h4>页面脚注</h4> </div> </div> <div data-role="page" id="page2"> <div data-role="header"> <h1>第 2 页</h1> </div> <div data-role="content"> 内容 </div> <div data-role="footer"> <h4>页面脚注</h4> </div> </div> <div data-role="page" id="page3"> <div data-role="header"> <h1>第 3 页</h1> </div> <div data-role="content"> 内容 </div> <div data-role="footer"> <h4>页面脚注</h4> </div> </div> <div data-role="page" id="page4"> <div data-role="header"> <h1>第 4 页</h1> </div> <div data-role="content"> 内容 </div> <div data-role="footer"> <h4>页面脚注</h4> </div> </div> </body> </html>
以上是关于(01)创建第一个jQuery Mobile页面的主要内容,如果未能解决你的问题,请参考以下文章
如何在 JQuery Mobile for iOS 中发生页面更改时添加一些操作
点击后通过 JavaScript 动态创建 jQuery Mobile 页面
选择中的 HTML 第一个选项不是在 Jquery mobile 页面上呈现所选项目?