📄 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 + -