javascript实现表单验证

javascript实现表单验证

具体代码:

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <script type="text/javascript"> function check() { //真实姓名(不能为空,其它没有要求) var name = document.getElementById("name").value; if(name==""||name==null) { alert("不能为空!"); return false; } //登录名(登录名不能为空,长度在5-8之间,可以包含中文字符())一个汉字算一个字符 var loginName = document.getElementById("loginName").value; if(loginName==""||loginName==null) { alert("登录名不能为空"); return false; } //\u4e00-\u9fa5 验证中文字符 var reg=https://www.jb51.net/^[A-Za-z0-8\u4e00-\u9fa5]{5,8}$/; var result = reg.test(loginName); if(!result) { alert("登录名长度在5-8之间!"); return false; } //密码(不能为空,长度6-12字符或数字,不能包含中文字符) var pwd = document.getElementById("pwd").value; if(pwd==""||pwd==null) { alert("密码不能为空!"); return false; } var regpwd = /^[A-Za-z0-9]{6,12}$/; if(!regpwd.test(pwd)) { alert("密码长度在6-12之间"); return false; } //确认密码(不能为空,长度6-12字符或数字,不能包含中文字符,与密码一致) var repwd = document.getElementById("repwd").value; if(repwd==""||repwd==null) { alert("确认密码不能为空!"); return false; } if(repwd!=pwd) { alert("确认密码与密码不一致"); return false; } //身份证(15或18位) var idcard = document.getElementById("idcard").value; if(idcard==""||idcard==null) { alert("身份证不能空!"); return false; } if((idcard.length!=15)&&(idcard.length!=18)) { alert("身份证必选为15或18位"); return false; } if(idcard.length==15) { var regIDCard=https://www.jb51.net/^\d{15}$/; if(!regIDCard.test(idcard)) { alert("身份证输入错误"); return false; } } if(idcard.length==18) { var regIDCard =https://www.jb51.net/^\d{18}|\d{17}[x|X]{1}$/; if(!regIDCard.test(idcard)) { alert("身份证输入错误"); return false; } } } </script> <body> <h3>javascript验证</h3> <table> <tr> <td>真实姓名(不能为空,其它没有要求)</td> <td><input type="text"/></td> </tr> <tr> <td>登录名(登录名不能为空,长度在5-8之间,可以包含中文字符())一个汉字算一个字符</td> <td><input type="text"/></td> </tr> <tr> <td>密码(不能为空,长度6-12字符或数字,不能包含中文字符)</td> <td><input type="password"/></td> </tr> <tr> <td>确认密码(不能为空,长度6-12字符或数字,不能包含中文字符,与密码一致)</td> <td><input type="password"/></td> </tr> <tr> <td>性别(必选其一)</td> <td><input type="radio" value="男" checked="checked"/>男 <input type="radio" value="女" />女 </td> </tr> <tr> <td>身份证(15或18位)</td> <td><input type="text"/></td> </tr> <tr> <td colspan="2"><input type="button" value="提交"/></td> </tr> </table> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgwwsp.html