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

页面跳转,为啥没效果

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

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

  <span> 秒后回到主页</span>

  <input type="button" value="返回" onclick="return()">

  

 

  <script type="text/javascript">  

 

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

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

    function count(){

        numb--;

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

        if(numb==0)

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

    }

    setInterval("count()",1000);

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

   function return(){

       window.history.go(-1);

   }

   

 </script> 

</body>

</html>


提问者:qq_浅秋_04051456 2017-04-05 10:57

个回答

  • qq_頖縌乖乄絯_04017281
    2017-04-05 16:51:26
    已采纳

    首先你的numb是通过document.getElementById("second").innerHTML获得的,你又有个numb--,想让它自减。。但是numb获得的是一个字符串类型的数据,它自减不了的

  • 学习使我进步
    2017-04-05 19:00:44

    <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 return()

        {

           window.history.return();

       }


  • 陈岩
    2017-04-05 11:32:54

    assign那里加http试一下