如何关闭当前标签

时间:2017-08-04 09:25:30

标签: javascript html google-chrome firefox window

这是我尝试过的:

<html> <head> <script language="javascript" type="text/javascript"> 
var parentWindow = this;
 function closeWindow() { 
// window.top.close(); this.parentWindow.close(); //window.open('','_parent',''); 
//window.close(); 
// var x=confirm('Are You sure want to exit:'); //if(x) window.close(); /*var childWindow = window.open("GAJANAN", "New Tab Window", "width=700,height=700"); setTimeout(function(){ childWindow.close(); }, 1500);*/ } </script>
 </head> <body>
 <br> <a href="javascript:closeWindow();">Close Window</a> <br><br> <a href="javascript:window.open('','_self').close();">close</a> <br><br><br> <!-- saved from url=(0014)about:internet --> <a href="#" onclick="javascript:window.close();opener.window.focus();" >Close Window - javascript:window.close();opener.window.focus();</a> </body> </html>

2 个答案:

答案 0 :(得分:0)

您只能关闭自己创建的窗口/标签页。也就是说,您无法以编程方式关闭用户创建的窗口/选项卡。

例如,如果您使用 window.open() 创建一个窗口,则可以使用 window.close()

答案 1 :(得分:-1)

尝试使用close()方法,如下所示:

 open(location, '_self').close()