有人可以在密码字段validation
告诉我这里有什么问题。我正在检查密码strength
,无论我输入的是什么,总是说“密码必须包含至少一个密码数字和一个字符“
jQuery.validator.addMethod("pwcheck", function(value) {
return /^[A-Za-z0-9!@#$%^&*()_]$/.test(value) // consists of only these
&& /[a-z]/.test(value) // has a lowercase letter
&& /\d/.test(value) // has a digit
}, "password must contain atleast one number and one character");
我想检查我的密码字段是否允许至少一个数字,一个字符和任意数量的特殊字符/数字/字符。
答案 0 :(得分:1)
你的第一个正则表达式是说它只能有一个字符......所以把它改成
/^[A-Za-z0-9!@#$%^&*()_]+$/.test(value)// add + to indicate one or more instances of the set
演示:Fiddle
答案 1 :(得分:1)
试试这个,
jQuery.validator.addMethod("pwcheck", function(value) {
return /^[A-Za-z0-9!@#$%^&*()_]+$/.test(value)&& /[a-z]/.test(value)
&& /\d/.test(value) ;
}, "password must contain atleast one number and one character");