js调用MVC3自带js验证
验证:
if ($(this).is("form")) {
return $(this).validate().checkForm();
}
事例:
$($.thisView.windowAddId + "-form").form({ onSubmit: function () { //进行表单验证 //如果返回false阻止提交 if ($(this).is("form")) { return $(this).validate().checkForm(); } return false; }, success: function (jsonResult) { jsonResult = $.parseJSON(jsonResult); if ($("#KeepOnAdd").is(":checked")) { $.clearValue($.thisView.windowAddId + "-form"); } else { $.tips(jsonResult); $($.thisView.windowAddId).window("close"); } $($.thisView.datagridId).datagrid("reload"); } }).submit();
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。