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

为什么将倒数代码函数设置传递参数就不能倒数了呢

代码如下,将倒数时间以num传递到倒数函数dCount中,无法实现倒数。

!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>


  <h2>操作成功</h2>

  <span id="second"></span>秒后返回主页 <a href="javascript:bcak()">返回</a>

  <script type="text/javascript">  

dCount(5);

function dCount(num){

     var i;

     if(num>0){

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

     num--;

     i=setTimeout("dCount(num)",1000);

     }

     else{

        clearTimeout(i);

        window.open("www.imooc.com","_self");

     }

}

function back(){

    window.history.back();

}

   

 </script> 

</body>

</html>


提问者:我们的洗手间 2016-03-20 12:50

个回答

  • J_一切随缘
    2016-03-20 21:02:15

    i=setTimeout("dCount(num)",1000);这一句的递归没有执行,去掉“”应该可以