关闭标签页Chrome / Safari浏览器-Javascript
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关闭标签页Chrome / Safari浏览器-Javascript相关的知识,希望对你有一定的参考价值。
我正在尝试使用javascript关闭Chrome / Safari浏览器标签。我尝试了以下所有代码。但没有任何效果。
open('about:blank', '_self').close(); - This opens up a new tab, and the user is able to browse back. Which is not required.
open(location, '_self').close(); - Scripts may close only the windows that were opened by it.
window.open('','_parent','');
window.close(); - Not working
是浏览器限制吗?
答案
window.close不起作用,因为它不知道要关闭什么,请尝试此
//Global var to store a reference to the opened window
var openedWindow;
function openWindow()
openedWindow = window.open('moreinfo.htm');
function closeOpenedWindow()
openedWindow.close();
以上是关于关闭标签页Chrome / Safari浏览器-Javascript的主要内容,如果未能解决你的问题,请参考以下文章