现在的位置: 首页 > 综合 > 正文

提交数据库成功时关闭模态对话框,同时关闭父页面

2013年08月04日 ⁄ 综合 ⁄ 共 337字 ⁄ 字号 评论关闭

父页面关键代码


 

var retValue = false;

retValue = window.showModalDialog('EvalComment.aspx?          evaluationID',obj,'dialogHeight:208px;dialogWidth:318px;resizable:no;status:no;');

 

if (retValue == 1) { window.opener=null; window.open('','_self'); window.close(); }

 

 


模态对话框页面关键代码


{window.returnValue = 1; window.opener=null; window.open('','_self'); window.close(); }

抱歉!评论已关闭.