网上参考的。
Posted eunji
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网上参考的。相关的知识,希望对你有一定的参考价值。
-
<%@ page language="java" contentType="text/html; charset=utf-8"
-
pageEncoding="utf-8"%>
-
<%@ page import="java.util.*" %>
-
-
<html>
-
<head>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-
<!--修正IE浏览器渲染效果的问题-->
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
-
<!--内容自适应-->
-
<meta name="viewport" content="width=device-width, initial-scale=1">
-
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" >
-
<script type="text/javascript" src="js/jquery.js"></script>
-
<title>用户登录</title>
-
<!-- 点击重置按钮清空用户名和密码 -->
-
<script>
-
$(document).ready(function(){
-
$("#reset").click(function(){
-
$("#username").val("");
-
$("#pwd").val("");
-
});
-
});
-
</script>
-
</head>
-
<body>
-
<div class="row text-center" style="padding-top:30px; padding-bottom:30px; background-color: #CCC; margin-top:200px;">
-
<form action="LoginServlet" method="post">
-
<div class="col-md-6 col-md-offset-3">
-
<div>
-
<label>帐号:</label>
-
<input type="text" id="username" name="username" />
-
</div>
-
<div>
-
<label class="img-circle">密码:</label>
-
<!-- name很中要,用于后台获取值,一般class修饰样式,id在js中用 -->
-
<input class="input" id="pwd" name="pwd" type="password" />
-
</div>
-
<div style="margin:10px 0px;">
-
<input class="btn btn-primary" type="submit" value="登录" />
-
<input class="btn btn-group" id="reset" type="button" value="重置" />
-
</div>
-
</div>
-
</form>
-
</div>
-
<script type="text/javascript" src="js/jquery.js"></script>
-
</body>
-
</html>
以上是关于网上参考的。的主要内容,如果未能解决你的问题,请参考以下文章