dialog提交表单
2013-07-27 10:05 糯米粥 阅读(689) 评论(0) 编辑 收藏 举报<div id= "dialog" title= "添加客户" > <!--表单提交--> <form id= "dialogForm" method= "post" action= "/ashx/PostCustmer.ashx" > <!--添加用户 弹窗--> <div id= "tabsCus" style= "margin-top:5px" > <div> <label for = "txtacno" >客户编号</label> <input type= "text" id= "txtacno" name= "txtacno" value= "" class = "ui-widget-content ui-corner-all" /> <label for = "txtacname" >客户名称</label> <input type= "text" id= "txtacname" name= "txtacname" value= "" class = "ui-widget-content ui-corner-all" /> </div> </div> </div> |
提交:
$.ajax({ url: form.attr('action'), type: form.attr('method'), data: addData + form.serialize(), //form.serialize()获取所有数据 //dataType: "json", async: false, success: function (data) { if (data == "ex") { alert("客户编号已经存在"); acno.attr("onfocus", "this.select()"); //获得焦点时全选 acno.focus(); //获取焦点 return false; } else if (data == "ok") { alert("添加成功"); $("#dialog").dialog("close"); //触发reset按钮 清空数据 //$("#ResetData").click(); window.parent.getIndex(); //调用父页面方法 获取当前选项卡的title url window.parent.load(); //刷新页内容 } else if (data == "no") { alert("添加失败。请关闭重试"); return false; } }, error: function (e) { alert("操作失败。请关闭重试"); return false; } });
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步