zoukankan      html  css  js  c++  java
  • 显示几秒内跳转

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Untitled Document</title>
    </head>
    <body>
        <span id="totalSecond">2</span>
        <script language="javascript" type="text/javascript">
            var second = document.getElementById('totalSecond').textContent;
    
            if (navigator.appName.indexOf("Explorer") > -1) {
                second = document.getElementById('totalSecond').innerText;
            } else {
                second = document.getElementById('totalSecond').textContent;
            }
    
            setInterval("redirect()", 1000);
            function redirect() {
                if (second < 1) {
                    location.href = 'http://www.baidu.com';
                } else {
                    if (navigator.appName.indexOf("Explorer") > -1) {
                        document.getElementById('totalSecond').innerText = second--;
                    } else {
                        document.getElementById('totalSecond').textContent = second--;
                    }
                }
            }
        </script>
    </body>
    </html>
  • 相关阅读:
    C语言实现大数计算
    shell编程题(九)
    shell编程题(八)
    信号(一)
    shell编程题(六)
    C语言实现webServer
    chrome导入导出常用书签
    JdbcTemplate
    数据库连接池
    JDBC
  • 原文地址:https://www.cnblogs.com/hhls/p/5620745.html
Copyright © 2011-2022 走看看