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

setInterval放函数里面为什么就错误??


<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h3>操作成功</h3>

  <p><span id=time>5</span>秒返回页面<a href="javascript:fanhui()">返回</a></p>

 

  <script type="text/javascript">  

 

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

   function count()

   {

   var num=document.getElementById('time').innerHTML;

   num=num-1;

   document.getElementById('time').innerHTML=num;

   if(num==0)

   {       

       window.location.href="http://www.baidu.com";

   }

   }

   setInterval("count()",1000);

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

   function fanhui(){

   window.location.href='http://www.baidu.com';

   }

 </script> 

</body>

</html>

这是我后来更改的代码 能成功运行  可开始我把setInterval("count()",1000);放count()函数里面就运行不了 请大神们告诉我错误原因. 谢谢。

提问者:Coffeeed 2017-02-20 15:45

个回答

  • 李湘子
    2017-02-20 16:00:53
    已采纳

    你放在count()函数里,并没有能触发count()函数啊