87,843
社区成员




<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width,initial-scale=1"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<style>img{max-width:100%;}</style>
<title>My first</title>
</head>
<body>
<div data-role="page">
<div data-role="header"><h1>My First Mobile Site</h1></div>
<div data-role="content">
<form id="login" name="login" action="login.php" method="POST">
<div data-role="fieldcontain">
<label for="username">Username:</label>
<input type="text" name="username" id="username" value=""/><br/>
</div>
<div data-role="fieldcontain">
<label for="password">Password:</label>
<input type="password" name="password" id="password" value=""/><br/>
</div>
<input type="hidden" name="hiddenInput" id="hiddenInput" value="secret message"/>
<input type="submit" name="loginSubmit" id="loginSubmit" value="Login"/>
</form>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width,initial-scale=1"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<title>My first 2</title>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>My First Mobile Site 2</h1>
</div>
<div data-role="content">
<p>Usernamr:"<strong><?php echo $_POST['username'];?></strong>"</p>
<a href="index.html" data-rel="back" data-role="button">Go Back</a>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width,initial-scale=1"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<title>My first 2</title>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>My First Mobile Site 2</h1>
</div>
<div data-role="content">
<p>Usernamr:<strong><?php echo $_POST['username'];?></strong></p>
<a href="index.html" data-rel="back" data-role="button">Go Back</a>
</div>
</div>
</body>
</html>
<p>Usernamr:<strong><?php echo $_POST['username'];?></strong></p>