原文链接:https://blog.csdn.net/wangjiaohome/article/details/81710671
close 方法只能关闭由自己打开的window,但实际应用中会有很多方式打开一个页面
用多种方式打开一个页面,然后用 window.close() 关闭它,在各浏览器下表现是有所不同的,差异如图
其中地址栏直接输入url的方式中,close效果最差,常见的关闭操作有:
1无作用:firefox,chrome, safari
window.close()
2)无作用:firefox
window.opener=null; window.open(" ",'_self');//注意空格别忘打 window.close();
3)无作用:firefox,
window.open(' ','_self');//空格莫忘 window.close();
4)无作用:firefox, safari
window.opener=null; window.close();
5)无作用:firefox;
var opened=window.open('about:blank','_self'); opened.opener=null; opened.close();
6)无作用:firefox, safari
var opened=window.open('about:blank','_self'); opened.close();
tip:
.不起作用时候看看空格是否忘记打
.window.opener赋为null,为了去掉部分浏览器关闭页面时弹出确认关闭的提示框
.实际测试中3)方法在chrome中也并没有起作用,也许因浏览器而异
.5),6)实际上是将要关闭的页面变成空白页 一种自己骗自己的做法~~
.FireFox格外傲娇,是浏览器配置问题,为了防止浏览器被而恶意关闭。 在Firefox地址栏里输入 about:config 在配置列表中找到 dom.allow_scripts_to_close_windows 点右键的选切换把上面的false修改为true即可