bootstrapValidator 跳过某些字段

bootstrapValidator skip certain field

<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 的登录表单,有一个验证码字段

我已将最大长度设置为 4,并且此字段是必需的。我需要验证器跳过并且不验证此字段。 (因为当用户输入错误的验证码但它仍然显示勾号,因为长度是正确的)

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

如果您不希望验证器处理此字段,请删除 requiredmaxlength,然后使用 onchange 或 [=15= 自行处理值检查] 处理程序,或其他方式。

使用这个来禁用 验证码:{ enabled:false }