?? e5_alogin.htm
字號:
<html>
<head>
<script language="vbscript">
Function valid()
str = Document.fd1.txtDLM.Value
if(str.Length<8) Then
Window.Alert("登陸名要8個字符以上!")
Document.fd1.txtDLM.Focus()
valid = False
Exit Function
End If
str = Document.fd1.txtKL.Value
if Empty(str)
Window.Alert("口令不能為空")
Document.fd1.txtKL.Focus()
Valid = False
Exit Function
End If
valid = True
End Function
</script>
</head>
<body>
<!--用戶登錄-->
<h1 align="center">登錄頁面</h1>
<form name="fd1" onsubmit="valid()" action="E5_Aframe.ASP"
method="post">
<center>
登錄名:<input type="text" name="txtDLM" size="10" />
口 令:<input type="password" name="txtKL" size="10" />
<input type="submit" name="btnOK" value="登錄" />
<input type="reset" name="btnESC" value="重置" />
</center>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -