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

为什么清除定时器无效

<!DOCTYPE HTML>

<html>

<head>

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

<title>计时器</title>


<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="startCount()"/>

    <input type="button" value="Stop" onclick="stopCounut()"/>

  </form>

</body>

</html>


提问者:qq_慕盖茨3262912 2019-05-04 13:34

个回答

  • 宝慕林4117178
    2019-09-26 10:57:20

    <input type="button" value="Stop" onclick="stopCounut()"/>

    stopCount()

  • weixin_慕丝3323624
    2019-05-08 19:43:11

    倒数第四行,最后函数名称错误

  • 律政先锋斯内克
    2019-05-04 22:09:29

    onclick里面的stopCount()打错了