bootstrapValidator跳过某个字段

时间:2017-03-20 03:23:13

标签: javascript jquery bootstrapvalidator

<input id="captcha_code" type="text" class="form-control captcha" name="captcha" maxlength="4" required>

password: {
    validators: {
        notEmpty: {
        },
        stringLength: {
            min: 6,
            max: 24,
        }
    }
},
captcha: {
    validators: false
}

我有一个使用bootstrapValidator的登录表单,有一个验证码字段

我设置了maxlength 4&amp;这个领域需要。我需要验证器跳过并且不要验证此字段。 (因为当用户输入错误的验证码时,但由于长度正确,它仍显示勾号)

2 个答案:

答案 0 :(得分:0)

通过在required上设置input,您告诉验证者需要验证该字段。

如果您不希望验证程序处理此字段,请同时删除requiredmaxlength,然后使用onchangeonsubmit处理程序自行处理值检查或其他方式。

答案 1 :(得分:0)

使用此功能禁用     验证码:{            已启用:false     }