?? background.jsp~5~
字號:
<%@page contentType="text/html; charset=GB2312"%>
<link href="yxb.css" rel="stylesheet" type="text/css"/>
<html>
<head>
<title>寵物醫院后臺管理系統</title>
<script type="text/javascript" language="javascript">
function sss(){
var name = document.form1.name.value;
var pass = document.form1.pass.value;
if(name.length==0){
alert("用戶名不能為空");
document.form1.name.focus();
return false;
}
if(pass.length==0){
alert("用戶名不能為空");
document.form1.pass.focus();
return false;
}
}
</script>
</head>
<body bgcolor="#ffffff">
<h1 align="center">寵物醫院后臺管理系統</h1>
<form method="post" action="/WebModule/bgdlservlet" name="form1">
<table align="center" border="1">
<tr>
<td>管理員帳號:</td>
<td>
<input type="text" name="name" size="15"/>
</td>
</tr>
<tr>
<td>管理員密碼:</td>
<td>
<input type="password" name="pass" size="15"/>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="Submit" value="提交">
<input type="reset" value="取消">
</td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -