IE关闭方法

IE关闭方法

         IE6调用window.close()方法可以直接将IE关掉,但是这个方法在IE7下就不好,在网上baidu了半天也没有找到合适的方法,最后没有办法只好让其弹出对话框,由客户点一下了。

      最近发现这个方法可以将IE7直接关闭,共享下

    var isIE6 
=  (window.navigator.userAgent.indexOf( " MSIE 6 " !=   - 1 );   
    
if (isIE6)  {   
        window.opener
=null;   
    }
  else   {   
        window.open(
'','_self','');   
    }
   
    window.close();   
   这个方法同时支持IE6.

你可能感兴趣的:(IE关闭方法)