html5+jquery+css开发android程序示例

代码如下:

 <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">
			<div data-role="header">
				标题(header)
			</div>
			<div data-role="content">
			网页内容(content)
			</div>
			<div data-role="footer">
			页脚(footer)
			</div>
		</div>
	</body>
 </html>

显示结果:

猜你喜欢

转载自blog.csdn.net/zang141588761/article/details/89320082