js中有什么方法能关闭浏览器已经打开的选项卡?

JavaScript015

js中有什么方法能关闭浏览器已经打开的选项卡?,第1张

<a href=# onclick="nw=window.open('网址')setTimeout('nw.close()',5000)">点这里打开一个新标签,5秒后自动关闭</a>

alert()方法不会被执行。

可以这样window.onbeforeunload = function(e) {

myfunction() //alert不会执行的。

console.log(1)

//return 'Dialog text here.'

}