JS 验证密码 不能为空,必须含有数字、字母、特殊字符,长度在8-12位

前端之家收集整理的这篇文章主要介绍了JS 验证密码 不能为空,必须含有数字、字母、特殊字符,长度在8-12位前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

废话不多说了,直接给大家贴代码了,具体代码如下所示:

12){ return "密码至少8个字符,最多12个字符"; }else{ for (var i = 0; i < v.length; i++) { var asciiNumber = v.substr(i,1).charCodeAt(); if (asciiNumber >= 48 && asciiNumber <= 57) { numasc += 1; } if ((asciiNumber >= 65 && asciiNumber <= 90)||(asciiNumber >= 97 && asciiNumber <= 122)) { charasc += 1; } if ((asciiNumber >= 33 && asciiNumber <= 47)||(asciiNumber >= 58 && asciiNumber <= 64)||(asciiNumber >= 91 && asciiNumber <= 96)||(asciiNumber >= 123 && asciiNumber <= 126)) { otherasc += 1; } } if(0==numasc) { return "密码必须含有数字"; }else if(0==charasc){ return "密码必须含有字母"; }else if(0==otherasc){ return "密码必须含有特殊字符"; }else{ return true; } } };

以上所述是小编给大家介绍的JS 验证密码 不能为空,必须含有数字、字母、特殊字符,长度在8-12位。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持

原文链接:https://www.f2er.com/js/38463.html

猜你在找的JavaScript相关文章