Javascript window.close()不起作用?

一般的窗口关闭的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()

你可能感兴趣的:(html,css学习笔记)