MVC客户端验证事件

时间:2010-11-19 16:16:44

标签: model-view-controller events validation client-side

有没有人知道是否有一个事件在客户端验证成功时被解雇,以及我将如何使用它。

我启用了它,但我需要在onSuccess上运行一些脚本。

 <% Html.EnableClientValidation(); %>

提前致谢。

1 个答案:

答案 0 :(得分:0)

您可以使用jquery并将函数附加到表单的提交

$("form").submit(function(event){
 //You can use event.preventDefault() to stop the form from submitting on it's own
 if($(this).valid())
  { //Do something } 
 else 
  {  } 
};

http://api.jquery.com/submit/