JQuery Mobile 教程

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> 
运行效果: