当前位置: 代码迷 >> Web前端 >> window.showModalDialog跟window.open关闭子页面时刷新父页面 IE7,IE8
  详细解决方案

window.showModalDialog跟window.open关闭子页面时刷新父页面 IE7,IE8

热度:348   发布时间:2012-10-11 10:16:10.0
window.showModalDialog和window.open关闭子页面时刷新父页面 IE7,IE8

??if(true){ ? ? ? ? ? ? ?window.showModalDialog(url,arguemnts,"dialogWidth:"?+?Width?+?"px;dialogHeight:"?+?Height?+?"px;center:yes;status:no;scroll:yes;help:no;");
????????????????//或者window.showModelessDialog

???????????????//模态窗口在关闭后可以直接在后面跟上刷新的语句

???????????????window.location.reload();

}else{

window.open(url,"","width="?+?Width?+?"px,height="?+?Height?+?"px,resizable=1,scrollbars=1");?

}

在 window.open打开的窗口中,关闭子窗口并刷新父窗口

window.opener.location.reload();window.opener=null;window.close();

在window.showModalDialog打开窗口中,关闭子窗口并刷新父窗口

window.dialogArguments.window.location?=?window.dialogArguments.window.location;?self.close();

window.dialogArguments.window.location=window.dialogArguments.window.location;

  相关解决方案