码迷,mamicode.com
首页 > 其他好文 > 详细

easyui form submit 不提交

时间:2015-09-23 19:03:22      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

http://bbs.csdn.net/topics/390811964
function saveProduct() {
            //$(‘#fm‘).form(‘submit‘, {
            //    url: url,
            //    onSubmit: function () {
            //        return $(this).form(‘validate‘);
            //    },
            //    success: function (result) {
            //        var result = eval(‘(‘ + result + ‘)‘);
            //        if (result.errorMsg) {
            //            $.messager.show({
            //                title: ‘Error‘,
            //                msg: result.errorMsg
            //            });
            //        } else {
            //            $(‘#dlg‘).dialog(‘close‘);        // close the dialog
            //            $(‘#dg‘).datagrid(‘reload‘);    // reload the user data
            //        }
            //    }
            //});//《-IE9测试有问题,改为Jquery方式提交。
            if ($(‘#fm‘).form("validate"))
            {
                $.post(url, $(‘#fm‘).serialize(), function (result) {
                    if (result.success == true) {
                        $(‘#dlg‘).dialog(‘close‘);
                        $(‘#dg‘).datagrid(‘reload‘);
                    }
                    else {
                        $.messager.show({
                            title: ‘Error‘,
                            msg: result.message
                        });
                    }                   
                });
            }
        }

easyui form submit 不提交

标签:

原文地址:http://www.cnblogs.com/zkwarrior/p/4832769.html

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