首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

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

2012-10-11 
window.showModalDialog和window.open关闭子页面时刷新父页面 IE7,IE8??if(true){ ? ? ? ? ? ? ?window.sh

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;

热点排行