不会自动返回,而且秒数直接减少到0了

来源:8-17 编程练习

qq_等我遇见你_0

2018-08-04 16:16

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>  
 </head>
 <body>
  <!--先编写好网页布局-->
  <h1>操作成功</h1><br>
  <div><span id="second">5</span>秒后回到主页 <a href="#" onclick="way()">返回</a>
  </div>
 
 
 
  <script type="text/javascript"> 
 
   //获取显示秒数的元素,通过定时器来更改秒数。
 
  var i=5;
   function clock(){
        document.getElementById("second").innerHTML=i;
       i=i-1;
   if(i=0){
       window.location.assign("http://www.imooc.com");
   }
   }
 
   setInterval("clock()",1000);

   //通过window的location和history对象来控制网页的跳转。
   function way(){
       window.history.back();
   }
  
 </script>
</body>
</html>

写回答 关注

2回答

  • 慕无忌5762020
    2018-08-10 19:50:04

    if(i=0) 错了  是 i==0

  • 云逸_
    2018-08-04 23:18:08

    <!DOCTYPE html>

    <html>

     <head>

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

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

     </head>

     <body>

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

      <h1>操作成功</h1><br>

      <div><span id="second">5</span>秒后回到主页 <a href="#" onclick="way()">返回</a>

      </div>

     

      

     

      <script type="text/javascript">  

     

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

        window.onload =function(){

        setInterval("clock()",1000);

         }

         var i=5;

        function clock(){

           document.getElementById("second").innerHTML= i;

           i--;  //直接i--就好了,不用想太多!

           if(i<=0){

           window.location.assign("http://www.imooc.com");

           } 

         }


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

       function way(){

           window.history.back();

       }

       

     </script> 

    </body>

    </html>


JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题