一般的窗口关闭的JS如下写法:
window.close()
但是呢,chrome,firefox等中有时候会不起作用。
改为下面的写法:
window.open("about:blank","_self").close()
或者
window.open("","_self").close()
如果是frame的时候如下写法:
一般:window.top.close()
改善:window.open("about:blank","_top").close() 或者 window.open("","_top").close()