- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <script type="text/javascript">
- <!--
- var duration=9900;
- var endTime = new Date().getTime() + duration + 100;
- function interval()
- {
- var n=(endTime-new Date().getTime())/1000;
- if(n<0) return;
- document.getElementById("timeout").innerHTML = n.toFixed(3);
- setTimeout(interval, 10);
- }
- window.onload=function()
- {
- setTimeout("window.location.href='http://www.baidu.com/'", duration);
- interval();
- }
- //-->
- </script>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>等待10秒</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- 站定已升级请访问新站<span id="timeout">10.000</span> 秒后 将自动跳转到新站首页</div>
- </form>
- </body>
- </html>