codecamp

window属性:closed

closed属性

此 closed 只读属性指示引用的窗口是否已关闭。

closed属性语法

isClosed = windowRef .closed;

closed属性值

isClosed
一个布尔值,有如下的可能值:
  • true:window 已关闭。
  • false:window 打开。

closed属性示例

从弹出窗口更改窗口的URL

以下示例演示了一个弹出窗口如何更改打开它的窗口的 URL。尝试更改 URL 之前,它会检查当前窗口是否使用 window.opener 属性的开启者,并且该开启者未关闭:

// Check that an opener exists and is not closed
if (window.opener && !window.opener.closed) {
  window.opener.location.href = "http://www.mozilla.org";
}

请注意,弹出窗口只能访问打开它们的窗口。

刷新以前打开的弹出窗口

在这个例子中,该函数 refreshPopupWindow() 调用弹出窗口的位置对象的 reload 方法来刷新其数据。如果弹出窗口尚未打开或用户已关闭,则会打开一个新窗口。

var 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");
  }
}
window属性:applicationCache
window属性:console
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Fetch API官方文档指南

Fetch API方法

WindowOrWorkerGlobalScope执行者:window

window属性

WindowOrWorkerGlobalScope执行者:WorkerGlobalScope

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }