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="home">
<div data-role="header">
<h1>首页</h1>
</div>
<div data-role="content">
<p>这是首页的内容。</p>
<a href="#about" data-role="button" data-theme="b" data-transition="slide">关于我们</a>
</div>
<div data-role="footer">
<h4>页脚信息</h4>
</div>
</div>
<div data-role="page" id="about">
<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-transition="slide"
来设置滑动过渡效果。这个示例简单明了,适合作为学习jQuery Mobile的起点。
评论已关闭