毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> WEB开发 >> 正文

ajax提交后如何关闭窗口

更新时间:2013-12-23:  来源:毕业论文

通过js弹出一个页面,提交后窗口不会自动关闭
大神帮忙看看
这是调出这个页面的js

7 function ButtonWin(viewUrl) {     windialog = $.dialog({         id : 'window',         title : ' ',         padding : 0,         cache : false,         lock : true,         fix : true    });     var content = null;     $.ajax({         url : viewUrl,         success : function(data) {             windialog.content(data);         }     }); }

这是这个页面上的提交按钮的js

 function winSave(formId, saveUrl, dataId) {     var roles = $(formId).serializeArray();     $.post(saveUrl, roles, function(data) {         if (data != null) {             if (data.success) {                 if (dataId != null && dataId != "undefined") {                     $(dataId).datagrid('reload');                 }             }             promotdialog(data.msg);             windialog.close();         }     }, "json"); }

第11行我加了windialog.close();但是不起作用

var windialog; function ButtonWin(viewUrl) {     windialog = $.dialog({         id : 'window',         title : ' ',         padding : 0,         cache : false,         lock : true,         fix : true    });     var content = null;     $.ajax({         url : viewUrl,         success : function(data) {             windialog.content(data);         }     }); }  function winSave(formId, saveUrl, dataId) {     var roles = $(formId).serializeArray();     $.post(saveUrl, roles, function(data) {         if (data != null) {             if (data.success) {                 if (dataId != null && dataId != "undefined") {                     $(dataId).datagrid('reload');                 }             }             promotdialog(data.msg);             windialog.cancel();         }     }, "json"); }

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。