简单的前端表单的校验

简单的前端表单的校验

具体内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script>
function checkForm(){

//获取用户名及其内容
var usernameObj=document.getElementById("username");
var username=usernameObj.value;
//判断value是否为空 若为空不能提交表单,
if(username==null || username == ""){
alert("用户名不能为空");
return false;
}

//获取密码及其内容
//1.获取密码元素
var pwdObj=document.getElementById("password");

//2.获取密码的值
var pwdValue=pwdObj.value;

//3.判断
if(pwdValue==null || pwdValue==""){
alert("密码不能为空");
return false;
}

return true;
}
</script>
</head>
<body>
<form action="#" method="get" οnsubmit="return checkForm()">
姓名:<input name="username" id="username"/><br>
密码:<input type="password" name="password" id="password"><br>
<input type="submit" value="保存"/>
<input type="reset" />
</form>
</body>
</html>

本作品采用知识共享署名 4.0 中国大陆许可协议进行许可,欢迎转载,但转载请注明来自御前提笔小书童,并保持转载后文章内容的完整。本人保留所有版权相关权利。

本文链接:https://royalscholar.cn/2017/04/17/简单的前端表单的校验/

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×