首页 > 其他 > 详细

显示几秒内跳转

时间:2016-06-27 19:42:40      阅读:131      评论:0      收藏:0      [点我收藏+]
<!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>

 

显示几秒内跳转

原文:http://www.cnblogs.com/hhls/p/5620745.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!