<!DOCTYPE html>
<html>
<head>
<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.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
<form method="post" action="#">
<div data-role="page" id="pageone">
<div data-role="header" data-position="fixed" data-fullscreen="true">
<a href="#" data-role="button">首页</a>
<h1>演示页面</h1>
<a href="#" data-role="button">帮助</a>
</div><br><br>
<p>
<div data-role="content">
<br>
<div>
<label for="fname">地点:</label>
<input type="text" name="fname" id="fname" placeholder="请输入地点">
<label for="fname">时间:</label>
<input type="date" name="fname" id="fname">
<label for="fname">图片:</label>
<input type="file" name="uploadFile"/>
<a href="#" data-role="button">提交</a>
</div>
</div>
</div>
</form>
</body>
</html>