JS 验证密码 不能为空,必须含有数字、字母、特殊字符,长度在8-12位
2021-07-20 01:06
标签:amp char length other 密码 asc 长度 bst arc checkpassword = function(v){ JS 验证密码 不能为空,必须含有数字、字母、特殊字符,长度在8-12位 标签:amp char length other 密码 asc 长度 bst arc 原文地址:http://www.cnblogs.com/shiqiaoli/p/7058126.html
var numasc = 0;
var charasc = 0;
var otherasc = 0;
if(0==v.length){
return "密码不能为空";
}else if(v.length12){
return "密码至少8个字符,最多12个字符";
}else{
for (var i = 0; i var asciiNumber = v.substr(i, 1).charCodeAt();
if (asciiNumber >= 48 && asciiNumber numasc += 1;
}
if ((asciiNumber >= 65 && asciiNumber = 97 && asciiNumber charasc += 1;
}
if ((asciiNumber >= 33 && asciiNumber = 58 && asciiNumber = 91 && asciiNumber = 123 && asciiNumber otherasc += 1;
}
}
if(0==numasc) {
return "密码必须含有数字";
}else if(0==charasc){
return "密码必须含有字母";
}else if(0==otherasc){
return "密码必须含有特殊字符";
}else{
return true;
}
}
};
文章标题:JS 验证密码 不能为空,必须含有数字、字母、特殊字符,长度在8-12位
文章链接:http://soscw.com/index.php/essay/106428.html