为什么5秒之后没有反应

来源:8-17 编程练习

Yeungchiho

2018-10-29 17:05

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h3>操作成功</h3>

  <span id="second">5</span><span>秒后回到主页</span>

  <a href="javascript:back()">返回</a>

 

  <script type="text/javascript">  

 var num=document.getElementById("second").innerHTML;

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

   function count()

   {

       num--;

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

       if (num==0)

       {

           location.assign("www.imooc.com");

       }

   }

    setInterval(count,1000);

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

   function back()

   {

      window.history.back();

   }

 </script> 

</body>

</html>


写回答 关注

3回答

  • qq_夏佐_0
    2018-11-29 12:21:09

    我的代码:


    <!DOCTYPE html>

    <html>

     <head>

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

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

     </head>

     <body>

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

      <p>

          <h4>操作成功</h4>

      </p>

      

      <form>

          <span id="txt">5</span>

          秒后返回主页

          <a href="javascript:goBack()" >返回</a>

      </form>

     

      <script type="text/javascript">  

         var num=5;

         function getTime() {

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

             num--;

             

             if (num == 0) {

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

             }

         }

         

         function goBack() {

             //window.history.go(-1); //返回方式2

             //window.location.assign("http://www.imooc.com"); // 方式3:加载新页面

             window.history.back();

         }


        var t = setInterval("getTime()",1000);


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

       

     </script> 

    </body>

    </html>


  • 大雨大鱼201309
    2018-11-02 16:53:17

    这个建议你可以在电脑上打开一个记事本,将代码复制粘贴到记事本,然后将这个记事本文件保存为后缀名为.html,比如说改为hahaha.html最后再打开这个文件就可以了。再建议可以将代码中的慕课网网址换成一下别的网址,比如说腾讯啊、百度啊,要不然也会有些问题,如果都这样改了,相信你的问题应该都会没问题了。



  • isSmallFish
    2018-11-01 22:14:14

    换外部编写器 代码是没有问题的

    比如Hbuilder,idear,webStrom...

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题