jQuery Mobile 入门,想学web开发
jQuery Mobile 是一种快速创建移动 web 应用程序的方式。以下是一个简单的 jQuery Mobile 页面的示例代码:
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile 示例</title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://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">查看关于</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">返回首页</a>
</div>
<div data-role="footer">
<h4>页脚</h4>
</div>
</div>
</body>
</html>
这个示例包括了一个简单的网站,有两个页面:首页和关于页。每个页面都有头部、内容区域和尾部。链接按钮用于在页面间导航。为了保证示例的完整性,我使用了 jQuery Mobile 的 CDN 链接。在实际开发中,你应该将这些资源下载到本地服务器上以提高页面加载速度。
评论已关闭