您可以挂钩一个事件jqv.form.result
,将消息推送到特定 div 并执行一些额外的验证,您可以将自己的错误消息推送回errorFound
对象。
jQuery("#formID").validationEngine();
$("#formID").bind("jqv.form.validating", function(event){
$("#hookError").html("");
});
$("#formID").bind("jqv.form.result", function(event , errorFound){
if(errorFound) $("#hookError").append("There is some problems with your form");
});
<form id="formID" class="formular" method="post" action="">
<div id="hookError" style="color:red; font-weight:bold;height:20px;"></div>
我已经查看了该库的源代码,最好的办法是检查errorFound
传递给jqv.form.result
事件处理程序的对象,如果运气好的话,您将能够运行一组错误消息并将它们写入分区hookError
。