<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile 基础示例</title>
<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>
</head>
<body>
<div data-role="page" id="home">
<div data-role="header">
<h1>首页</h1>
</div>
<div data-role="content">
<p>这是首页的内容。</p>
<a href="#profile" data-role="button" data-theme="b" data-transition="slide">查看个人资料</a>
</div>
<div data-role="footer">
<h4>首页底部</h4>
</div>
</div>
<div data-role="page" id="profile">
<div data-role="header">
<h1>个人资料</h1>
</div>
<div data-role="content">
<p>这是个人资料的内容。</p>
<a href="#home" data-role="button" data-theme="b" data-transition="slide">返回首页</a>
</div>
<div data-role="footer">
<h4>个人资料底部</h4>
</div>
</div>
</body>
</html>
这个代码示例展示了如何使用jQuery Mobile创建一个简单的移动网站,其中包含两个页面:首页和个人资料页。每个页面都有头部、内容区域和底部。在内容区域中,使用了按钮来在不同页面间进行跳转。这个示例演示了如何使用data-role="page"
来定义页面,以及如何使用data-role="header"
、data-role="content"
和data-role="footer"
来组织页面布局。同时,展示了如何使用data-transition="slide"
来设定页面跳转时的动画效果。