jQueryMobile框架模板1.01版本

<!DOCTYPE html>
<html>
<head>
<title>jQueryMobile框架模板</title>
<meta http-equiv="Content-Type" content="text/html charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
</head>
<body>
<div data-role="page">

<div data-role="header">
<h1>标题</h1>
</div><!-- /header -->

<div data-role="content">
<p>正文</p>
</div><!-- /content -->

<div data-role="footer">
<h4>脚注</h4>
</div><!-- /footer -->

</div><!-- /page -->
</body>
</html>

原文地址:https://www.cnblogs.com/xiaozhanga4/p/2357463.html