`
jia106329
  • 浏览: 60996 次
  • 性别: Icon_minigender_2
  • 来自: tj
社区版块
存档分类
最新评论

去掉window.top.close()提示框

阅读更多
http://topic.csdn.net/u/20091123/11/5aad90de-83e0-4518-8a53-57f16ddf0c85.html

JScript code<script language="javascript">
window.open('','_top');
window.top.close();</script>


包含iframe的页面关闭window.top.close();

http://my.oschina.net/shizhoubo/blog/2877

//是否是IE浏览器   
if(navigator.userAgent.indexOf("MSIE")>0){
     if(navigator.userAgent.indexOf("MSIE 6.0")>0){//IE6
          window.top.opener=null; 
          window.top.open("","_self");    
          window.top.close();    
     }else if(navigator.userAgent.indexOf("MSIE 7.0")>0){//IE7
          window.open('','_top');
          window.top.close();
     }else{//其他IE版本
          window.open('','_top');
          window.top.close();
     }
}else{//不是IE浏览器
   window.top.open('','_top');
   window.top.close();
}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics