Window.closed - Web APIs 编辑
The Window.closed
read-only property indicates whether the referenced window is closed or not.
Syntax
const isClosed = windowRef.closed;
Value
A Boolean
. Possible values:
true
: The window has been closed.false
: The window is open.
Examples
Change the URL of a window from a popup
The following example demonstrates how a popup window can change the URL of the window that opened it. Before attempting to change the URL, it checks that the current window has an opener using the window.opener
property and that the opener isn't closed:
// Check that an opener exists and is not closed
if (window.opener && !window.opener.closed) {
window.opener.location.href = 'http://www.mozilla.org';
}
Note that popups can only access the window that opened them.
Refreshing a previously opened popup
In this example the function refreshPopupWindow()
calls the reload()
method of the popup's location object to refresh its data. If the popup hasn't been opened yet or the user has closed it a new window is opened.
const popupWindow = null;
function refreshPopupWindow() {
if (popupWindow && !popupWindow.closed) {
// popupWindow is open, refresh it
popupWindow.location.reload(true);
} else {
// Open a new popup window
popupWindow = window.open('popup.html', 'dataWindow');
}
}
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'window.closed' in that specification. | Living Standard |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论