[removed]window.close(); doesn't close the tab

2019-07-08 20:57发布

It works in Chrome and I thought it used to work in IE8... but it doesn't seem to.

javascript:window.open('', '_self', ''); window.close();alert('test');

All I get is the alert.

Basically i'm trying to execute a function which works fine in the browser as an a link, but using the same code in captivates "execute javascript" on a button, doesn't work.

Then I thought I would test it using javascript: in IE... and it doesn't close it ether.

Whats going on?
It's driving me nuts.

3条回答
可以哭但决不认输i
2楼-- · 2019-07-08 21:29

I found that this works

top.close();

From within the browser address bar

javascript:top.close();
查看更多
Emotional °昔
3楼-- · 2019-07-08 21:32

A better presentation:

onclick="javascript: window.open('', '_self', ''); window.close();"

查看更多
何必那么认真
4楼-- · 2019-07-08 21:42

I don't know why, but the example from the link below didn't work for me.

http://www.w3schools.com/jsref/met_win_close.asp

Worked:

window.close();

Didn't worked:

myWindow.close();
查看更多
登录 后发表回答