问答详情
源自:8-6 取消计时器clearTimeout()

为什么按开始和结果都没有反应?

<script type="text/javascript">

  var num=0;

  var i;

  function startCount(){

    document.getElementById('count').value=num;

    num=num+1;

    i=setTimeout("startCount()",1000);

  }

  function stopCount(){

  clearTimeout(i);

  }

</script>

</head>

<body>

  <form>

    <input type="text" id="count" />

    <input type="button" value="Start" onClick="starCount()" />

    <input type="button" value="Stop"  onClick="stopCount()" />

  </form>

</body>


提问者:PengGuo 2018-10-23 22:23

个回答

  • Micheal_Gao
    2018-11-03 10:42:47

    https://img3.mukewang.com/5bdd0ad800018ff208410473.jpg

    你定义的是这个函数startCount(),写成了starCount()。如1楼所说,你这个是拼写错误,要注意啊。

  • isSmallFish
    2018-10-31 18:02:09

    function stopCount(){

      clearTimeout(i);

      }

    <input type="button" value="Stop"  onClick="stopCount()" />

    这个函数中 你给clearTimeout()传入了一个i  可以函数里没有i这个属性 也没有传i这个值进来 所以执行不了

    你应该给这个函数传一个值进去 

    function stopCount(i){

      clearTimeout(i);

     }

    然后在input的点击方法中也修改为

    <input type="button" value="Stop"  onClick="stopCount(i)" />


  • 淅沥沥下雨
    2018-10-24 11:27:51

     onClick="starCount()" />

    写错了startCount