zoukankan      html  css  js  c++  java
  • easyui form submit 不提交

    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
                            });
                        }                   
                    });
                }
            }
  • 相关阅读:
    模块之间的消息传递优势与问题
    cp命令
    gimp的python控制台生成UI代码
    three.js(六) 地形法向量生成
    mysql 主从复制配置
    Three.js(九)perlin 2d噪音的生成
    three.js(五) 地形纹理混合
    mongodb 复制
    pycparse python的c语法分析器
    ajax出现 所需的数据还不可用
  • 原文地址:https://www.cnblogs.com/zkwarrior/p/4832769.html
Copyright © 2011-2022 走看看