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;
本文介绍了如何使用JavaScript通过window.open和window.showModalDialog打开新窗口,并详细解释了如何在关闭这些窗口的同时刷新父窗口的方法。提供了具体的代码示例。
1万+

被折叠的 条评论
为什么被折叠?



