现在的位置: 首页 > 综合 > 正文

js关闭页面不提示

2013年10月05日 ⁄ 综合 ⁄ 共 453字 ⁄ 字号 评论关闭

  

 

function windowClose(msg){
     if(navigator.appName == "Microsoft Internet Explorer") {
            if(navigator.appVersion.match(/7./i)=='7.') {
                //alert( '当前浏览器是IE 7' )
                if(confirm(msg)){
                 window.open('','_top');
      window.top.close();
     }
            } else if(navigator.appVersion.match(/6./i)=='6.') {
     //alert( '当前浏览器是IE 6' )
     if(confirm(msg)){
      window.opener=null;
      window.close();
     }
    }
          }
    }

抱歉!评论已关闭.