我正在使用1000hz BootstrapValidator并单击按钮后(不提交,因为我需要留在页面上而不刷新)我想检查表单是否正确。
我只能打电话$("#form2").validator('validate');
,但我无法获得返回值。
我知道,isDefaultPrevented
但它是在提交后调用的,我不想提交。
$('#form').validator().on('submit', function (e) {
if (e.isDefaultPrevented()) {
// handle the invalid form...
} else {
// everything looks good!
}
})