无法用window.close()关闭
程序员文章站
2022-03-04 20:29:34
...
无法用window.close()关闭
今天做项目里面有个关闭当前页面功能,于是在脚本了里写了一个方法:
function close_page(){
if(confirm(“您确定要关闭本页吗?”)){
window.opener=null;
window.open(’’,’_self’);
window.close();
}
}
浏览器却报了警告提示:Scripts may close only the windows that were opened by it,不能关闭页面,找了度娘,搜到的解决方案有:
1、
self.opener=null;
self.close();
2、
window.location.href=“about:blank”;
window.close();
第1个方法也跟开始写的方法一样。
第2个方法其实是以打开一个新的空白页为代价的,且也会提示如下警告信息:
Scripts may close only the windows that were opened by it.
经过一番折腾。终于明白了问题所在:
window.close() and self.close() 是不能关闭非弹出窗口(opener=null及非window.open()打开的窗口)
希望大家有什么好的建议可以留言一下!
推荐阅读