码迷,mamicode.com
首页 > Web开发 > 详细

js调用MVC3自带js验证

时间:2014-10-30 22:32:49      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   ar   for   sp   div   

验证:
 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();

 

js调用MVC3自带js验证

标签:style   blog   io   color   os   ar   for   sp   div   

原文地址:http://www.cnblogs.com/jaday/p/4063773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!