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

请问哪里错了,一直倒数不跳转呢 .. 都数到负数去了

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h1>操作成功</h1>

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

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

 

  <script type="text/javascript">  

  var shuzi=document.getElementById("daoshu").innerHTML;//定义函数倒数

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

   function aa()

   {

       shuzi--;

       document.getElementById("daoshu").innerHTML=shuzi;

       if(shuzi==0)

       {

        loction.assign("https://www.baidu.com");

        }

       }

setInterval("aa()",1000);




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

   function houtui(){

       window.history.back()

   }

   

 </script> 

</body>

</html>


提问者:杨念 2016-10-02 15:26

个回答

  • lhugh
    2016-10-02 17:03:52
    已采纳

     if(shuzi==0)

           {

            loction.assign("https://www.baidu.com");

            }

        此块代码中  location打成了  loction  少了一个a,单词没拼对


  • 养生语
    2016-10-03 12:49:43

    除了刚才那个朋友说的,不跳转的问题,还有一个问题就是你没有clearInterval() 清除定时器,这样会一直计数。