close 方法

void close()
override

关闭窗口。

此方法只有在 WindowBase 对象是 可脚本关闭 且调用 close 的窗口允许导航窗口时才会成功。

如果窗口是由另一个窗口打开的,或者如果窗口的历史记录中只有一个文档,则该窗口是可脚本关闭的。

由于浏览器的安全特性,窗口可能不允许导航,因此无法关闭另一个窗口。

var other = window.open('http://www.example.com', 'foo');
// Closes other window, as it is script-closeable.
other.close();
print(other.closed); // 'true'

var newLocation = window.location
    ..href = 'http://www.mysite.com';
window.location = newLocation;
// Does not close this window, as the history has changed.
window.close();
print(window.closed); // 'false'

另请参阅

实现

void close() native;