jQuery Mobile 是创建移动 web 应用程序的框架。
jQuery Mobile 适用于所有流行的智能手机和平板电脑。
jQuery Mobile 使用 HTML5 和 CSS3 通过尽可能少的脚本对页面进行布局。
<div data-role="page" id="pageone"> <div data-role="header"> <h1>在此处写入标题</h1> </div> <div data-role="content"> <p>在此处写入正文</p> </div> <div data-role="footer"> <h1>在此处写入页脚文本</h1> </div> </div>
jQuery Mobile 是一个为触控优化的框架,用于创建移动 web 应用程序。
jQuery 适用于所有流行的智能手机和平板电脑
<head> <link rel=stylesheet href=jquery.mobile-1.3.2.css> <script src=jquery.js></script> <script src=jquery.mobile-1.3.2.js></script> </head>
<body> <divdata-role="page"
> <divdata-role="header"
> <h1>欢迎访问我的主页</h1> </div> <divdata-role="content"
> <p>我是一名移动开发者!</p> </div> <divdata-role="footer"
> <h1>页脚文本</h1> </div> </div> </body>
<div data-role="page"id="pageone"
> <div data-role="content"> <a href="#pagetwo">转到页面二</a> </div> </div> <div data-role="page"id="pagetwo"
> <div data-role="content"> <a href="#pageone">转到页面一</a> </div> </div>
原文:http://www.cnblogs.com/bellow/p/4735339.html