IE8倒数关闭窗口

Posted 刘冰华____烂笔头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE8倒数关闭窗口相关的知识,希望对你有一定的参考价值。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
	<title>无标题</title>
</head>
<body>

<div id="close" style="font-size:30px;text-align:center;">
	
</div>

<script type="text/javascript">
	
var i = 3;
var _c = document.getElementById(‘close‘);
	setInterval(function(){
		if(i < 0){
			window.opener=null;
			window.open(‘‘,‘_self‘);
			window.close();
		}else{
			_c.innerHTML = ‘页面即将关闭‘+i+‘秒!‘
			i--;
		}
	},1000);
</script>
</body>
</html>

  

以上是关于IE8倒数关闭窗口的主要内容,如果未能解决你的问题,请参考以下文章

兼容ie8,firefox,chrome浏览器的代码片段

Javascript关闭IE6,IE7,IE8和Firefox没有确认框?

IE8.0有问题,无法显示图片和页面,打叉叉的,经常自动关闭和弹出别的窗口

HTML代码片段

HTML代码片段

IE8兼容模式 - document.documentMode [关闭]