??if(true){ ? ? ? ? ? ? ?window.showModalDialog(url,arguemnts,"dialogWidth:"?+?Width?+?"px;dialogHeight:"?+?Height?+?"px;center:yes;status:no;scroll:yes;help:no;"); ???????????????//模态窗口在关闭后可以直接在后面跟上刷新的语句 ???????????????window.location.reload();
????????????????//或者window.showModelessDialog
}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;