`
rabby
  • 浏览: 165612 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

javascript关闭IE不弹出对话框

阅读更多
<script type="text/javascript">
function closeWindow(){
	var ua = navigator.userAgent.toLowerCase(); 
	if(ua.indexOf('MSIE 5.0')!=-1||ua.indexOf('MSIE 6.0')!=-1){ 
		window.opener=null;
 		window.close();
	}else {
		window.opener=null;
		window.open('','_top');
		window.close();
	}
}
</script>

 

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics