if ($("form").valid()) {
$.ajax({ url: "@Url.Action("EditCusAndCusCard")", type: "Post", data: $("form").serialize()+"&"+ $.param({ entity: $("#Numbers").datagrid("getChanges", "inserted")}),//主要是通过一个&关键符号 dataType: "json", success: function (data) { if (data.type == 1) { window.parent.frameReturnByMes("操作成功"); window.parent.frameReturnByReload(true); window.parent.frameReturnByClose() } else { window.parent.frameReturnByMes("操作失败"); }}
});