bootstrap的validator可以验证两次输入的密码是否一致吗
1个回答
展开全部
可以的,请参考下面的代码:
passwordSignUp: {
validators: {
notEmpty: {
message: '密码不能为空'
},
stringLength: {
min: 6,
max: 30,
message: '密码长度必须大于6位,小于30位<br>'
},
regexp: {
regexp: /^(?=.*\d)(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{6,30}$/,
message: '密码必须包含数字、字母和字符<br>'
},
identical: {
field: 'passwordSignUp_confirm',
message: '两次输入的密码不相符<br>'
},
different: {
field: 'usernameSignUp',
message: '不能使用用户名作为密码'
}
}
},
passwordSignUpConfirm: {
validators: {
notEmpty: {
message: '密码不能为空'
},
identical: {
field: 'passwordSignUp',
message: '两次输入的密码不相符<br>'
},
different: {
field: 'usernameSignUp',
message: '不能使用用户名作为密码'
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询