0
<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,沒有爲驗證碼bootstrapValidator跳過某些字段
一個字段我已經設置的maxlength 4 &該領域所需的。我需要驗證器跳過並且不驗證這個字段。 (因爲當用戶輸入錯誤的驗證碼時,由於長度是正確的,所以仍然顯示勾號)