我正在使用bootstrap验证器来验证表单元素。该演示可在此处获取:https://github.com/nghuuphuoc/bootstrapvalidator/blob/master/demo/validators.html
有一项规定可以匹配两种类型的密码:
identical: {
field: 'password2',
message: 'The password and its confirm are not the same'
}
我想禁止两个相同的电子邮件值,但没有这样做的规定:
notIdentical: {
field: 'email2',
message: 'The two emails IDs are the same'
}
还有其他方法(包括正则表达式)来检查相似的值吗?