javascript倒计时 页面跳转

javascript倒计时 页面跳转
<!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>Count</title> 
    </head> 
    <body> 
 
<div style="text-align: center " >Enter baidu in
<span id="totalSecond" style="text-align: center ;font-family: GulimChe;font-size: 100px;">5
</span>seconds </div> 
 
<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 < 0) 
        { 
            location.href = www.baidu.com; //go to baidu
        } else 
        { 
            if (navigator.appName.indexOf("Explorer") > -1) 
            { 
                document.getElementById(totalSecond).innerText = second--; 
            } else 
            { 
                document.getElementById(totalSecond).textContent = second--; 
            } 
        } 
    } 
</script> 
    </body> 
</html> 
javascript倒计时 页面跳转

javascript倒计时 页面跳转

上一篇:浏览器兼容CSS代码:按钮文字垂直居中(input button text vertical align)


下一篇:HTML5简易在线画图工具