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

来源:8-17 编程练习

Coffeeed

2017-02-20 15:45


<!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()函数里面就运行不了 请大神们告诉我错误原因. 谢谢。

写回答 关注

1回答

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

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

    Coffee...

    非常感谢!

    2017-02-21 17:01:53

    共 3 条回复 >

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题