• 基于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>

  • 相关阅读:
    数字配对(bzoj 4514)
    任务查询系统(bzoj 3932)
    楼房重建(bzoj 2957)
    Hotel(poj 3667)
    Can you answer these queries(spoj 1043)
    亚瑟王(bzoj 4008)
    潘多拉的盒子(bzoj 1194)
    Circling Round Treasures(codeforces 375c)
    莫队算法---基础知识介绍(转载)
    HDU 1141---Brackets Sequence(区间DP)
  • 原文地址:https://www.cnblogs.com/see7di/p/2239784.html
Copyright © 2020-2023  润新知