0
我使用1000hz BootstrapValidator,點擊按鈕後(因爲我需要留在頁面上而沒有刷新,請不要提交)我想檢查表單是否正確。bootstrap-validator檢查表單
我只能打電話$("#form2").validator('validate');
但我無法獲得回報價值。
我知道關於isDefaultPrevented
,但它被提交後調用,我不想提交。
$('#form').validator().on('submit', function (e) {
if (e.isDefaultPrevented()) {
// handle the invalid form...
} else {
// everything looks good!
}
})