问答详情
源自:8-17 编程练习

求助,大家可以帮忙看一下吗?效果就是出不来呀!


<!DOCTYPE html>

<html>

 <head>

  <title>浏览器对象</title>  

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

  <style>

      a{color:blue;text-decoration:underline;}

  </style>

 </head>

 <body> 

  <!--先编写好网页布局-->

  

 <h3>操作成功</h3>

<p><span id="s">5</span>秒后回到主页&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a herf="javascript:tiaozhuan()">返回</a></p>

  <script type="text/javascript">  

   var num=5;

   var t= setInterval( function sub(){

        num--;

        document.getElementById("s").innerHTML=num;

        if(num==0){

          window.location.href("https://www.imooc.com"); 

          clearInterval(t);

   }

   },1000);

   

      function tiaozhuan(){

       window.location.back();

   }

     }

   //获取显示秒数的元素,通过定时器来更改秒数。

   

   //通过window的location和history对象来控制网页的跳转。

   

 </script> 

</body>

</html>


提问者:太阳会发光呀 2019-02-09 15:26

个回答

  • 慕斯卡4278201
    2019-04-24 16:53:10

    把window.location.href("https://www.imooc.com");
     应改为location.href("https://www.imooc.com");

  • 慕娘9438912
    2019-03-26 19:41:02

    把window.location.href改为window.location.assign

  • 太阳会发光呀
    2019-02-09 15:38:21

    同学们我的时间减的又正常了,只是在0秒时不跳转了

  • 太阳会发光呀
    2019-02-09 15:32:40

    找到问题了,多了一个大括号。然后又又新的问题了,时间一直在减。。。。https://img.mukewang.com/5c5e8214000170d602510127.jpg