基于jquery的页面定时跳转

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>err.html</title>   
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">  
    <script src="scripts/jQuery/jquery.js" type="text/javascript"></script>
    <script language="javascript">
        $(document).ready(function() {
            function jump(count) {
                window.setTimeout(function(){
                    count--;
                    if(count > 0) {
                        $('#num').attr('innerHTML', count);
                        jump(count);
                    } else {
                        location.href="login.php";
                    }
                }, 1000);
            }
            jump(3);
        });
    </script>
  </head> 
  <body>
       失败...<br />
       3秒后自动跳转。当前还剩<span id="num">3</span>秒
  </body>
</html>

posted @ 2011-06-09 09:16  已經停更  阅读(958)  评论(0编辑  收藏  举报