码迷,mamicode.com
首页 > Web开发 > 详细

js控制10秒后页面自动跳转

时间:2015-05-09 13:33:22      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:js控制10秒后页面自动跳转

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>10s Jump</title>

<style>

    #content {width:100%; margin:0px auto; height:720px; line-height:720px; font-family:"微软雅黑"; font-size:16px}

</style>

<script type="text/javascript">

function countDown(secs,tUrl) {

    var jumpTo = document.getElementById("jumpTo");

    jumpTo.innerHTML=secs; 

    if (--secs>0){

        setTimeout("countDown("+secs+",‘"+tUrl+"‘)",1000);

     }

    else{

        location.href=tUrl;

    }

</script>

</head>


<body>

<div id="content" align="center">

    <a href="http://www.baidu.com">点击继续访问</a> &nbsp; <span id="jumpTo">9</span>&Prime;

    <script type="text/javascript">countDown(9,"http://www.baidu.com");</script>

</div>

</body>

</html> 

js控制10秒后页面自动跳转

标签:js控制10秒后页面自动跳转

原文地址:http://tianshili.blog.51cto.com/5050423/1649811

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!