jQueryMobile Web 开发基础知识
<!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="pageOne">
<div data-role="header">
<h1>页面标题</h1>
</div>
<div data-role="content">
<p>这是第一个页面的内容。</p>
<a href="#pageTwo" data-role="button" data-inline="true" data-theme="b">跳转到第二页</a>
</div>
<div data-role="footer">
<h4>页脚信息</h4>
</div>
</div>
<div data-role="page" id="pageTwo">
<div data-role="header">
<h1>第二页标题</h1>
</div>
<div data-role="content">
<p>这是第二个页面的内容。</p>
<a href="#pageOne" data-role="button" data-inline="true" data-theme="b">返回第一页</a>
</div>
<div data-role="footer">
<h4>第二页页脚</h4>
</div>
</div>
</body>
</html>
这个代码实例展示了如何使用jQuery Mobile创建一个简单的移动网站。它包括两个页面,每个页面都有头部、内容区域和尾部。页面之间的跳转通过链接按钮实现。这个例子是学习jQuery Mobile的一个很好的起点。
评论已关闭