为了账号安全,请及时绑定邮箱和手机立即绑定

5秒之后页面不能跳转???

我的代码运行不出来呢,5秒之后根本不跳转,是什么原因呀?

正在回答

2 回答

你沒打上要跳轉到哪裡,在這一段加上數到0時要跳到的網頁

if(num == 0){

       clearInterval(timeout);

       window.location.href="要跳到的網頁";

   }


0 回复 有任何疑惑可以回复我~
<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>   
 </head>
 <body>
  <!--先编写好网页布局-->
  <h2>操作成功</h2>
  <span id = "num">5</span>秒后返回主页&nbsp;<a href="#" onclick = "window.history.back()">返回</a>
  <script type="text/javascript">  
  var num = 5;
  function count(){
   //获取显示秒数的元素,通过定时器来更改秒数。
   document.getElementById("num").innerHTML = num;
   //通过window的location和history对象来控制网页的跳转。
   if(num == 0){
       clearInterval(timeout);
   }
   num --;
  }
  
  var timeout = setInterval(count,1000);
 </script> 
</body>
</html>


0 回复 有任何疑惑可以回复我~
#1

小星星3221329 提问者

不能运行呀
2016-05-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

5秒之后页面不能跳转???

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信