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倒数关闭窗口的主要内容,如果未能解决你的问题,请参考以下文章
Javascript关闭IE6,IE7,IE8和Firefox没有确认框?