`
a3mao
  • 浏览: 559427 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

关闭一个页面时不弹出对话框

    博客分类:
  • Work
阅读更多

function CloseWin()
{
    var ua = navigator.userAgent; var ie = navigator.appName=="Microsoft Internet Explorer"?true:false;
    if(ie)
    {
       var IEversion = parseFloat(ua.substring(ua.indexOf("MSIE ")+5,ua.indexOf(";",ua.indexOf("MSIE "))));
       if( IEversion< 5.5)
       {
         var str = '';
         document.body.insertAdjacentHTML("beforeEnd", str);
         document.all.noTipClose.Click();
       }
       else
       {
        window.opener =null; window.close();
       }
    }
    else
    {
      window.close()
    }
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics