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

到4秒就不变了,求大神看下

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>

 </head>
 <body>
  <!--先编写好网页布局-->
<h4>操作成功</h4>
  </br>
 <a id="num">5</a>秒后返回主页
       <a   onclick="GoBack()"> 返回</a>
     <script>  
   var num=document.getElementById('num').innerHTML;
  function startCount() {
      if(num > 1){
          num--;
          document.getElementById('num').innerHTML =num;}else{location.assign('http://www.imooc.com');}
    
 
  }
  setInterval(startCount(), 1000);
 

    function GoBack() {
         window.history.back();   
        }
 </script>
</body>
</html>

提问者:qq_昼绽_0 2016-05-17 22:03

个回答

  • wupeiliang
    2016-05-17 22:42:57
    已采纳

    问题代码:setInterval(startCount(), 1000);

    正确的使用:setInterval("startCount()", 1000)带引号  或者setInterval(startCount, 1000)不带引号;

    我目前也只是一知半解得水平,自行了解关于关于setInterval()第一个参数的问题