xml 代码
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <HTML>
- <HEAD>
- <TITLE> 页面自动跳转 </TITLE>
- <script language="javascript">
- function autoRedirct(secs){
- showArea.innerText = secs;
- if(--secs>0){
- //1000毫秒后执行方法"autoRedirct("+secs+")"
- setTimeout("autoRedirct("+secs+")",1000);
- }else{
- window.location.href="http://www.baidu.com";
- }
- }
- </script>
- </HEAD>
- <BODY>
- <div id="showArea"><a href="#" onclick="autoRedirct(3)">秒钟后页面跳转...</a></div>
- </BODY>
- </HTML>