0
我正在使用jQuery驗證DOCS。jQuery驗證 - 生效驗證
只是想知道,我們可以做一個驗證onfocusout在提交表單之前?規範中有一個選項 - 但只有在您首次提交表單後才能使用。
我試圖才達到 - 因爲你想要去offfocus - 它將標誌着輸入爲有效(檢查)或無效(錯誤MSG)。
目前的功能是有,但提交表格後,才你。
我輸入驗證碼:
$('.loginbox').validate({
debug: true,
rules: {
password: {
required: true,
minlength: 8,
maxlength: 8
},
username: {
required: true,
minlength: 2
}
},
showErrors: function(errorMap, errorList) {
this.defaultShowErrors();
},
success: "valid",
submitHandler: function() { alert("Submitted!") }
});
任何幫助非常讚賞。皮特
皮特,如果我是任何幫助,您可以拋出勾選上我的答案?謝謝 – Brad