close 方法
重写
关闭窗口。
此方法只有在 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;