0

我需要在输入类型 =“按钮”单击时验证 MVC 表单,而不是在输入类型 =“提交”上。单击按钮时,如果值无效,则需要使用 javascript 验证表单并触发相关验证。

我的表格就像

<% using (Html.BeginForm("ConfirmationForPayment", "Plan", FormMethod.Post, new { id = "frm" }))

我也试过

 $('form#frm').validate();
 $('frm').validate();

但这对我不起作用。

4

1 回答 1

0

If your use client side validation you can try:

Sys.Mvc.FormContext.getValidationForForm($("#frm")[0]).validate('submit');
于 2012-05-18T09:03:12.590 回答