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

time并不会增加

<!DOCTYPE HTML>

<html>

<head>

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

<title>计时器</title>

<script type="text/javascript">

   function clock(){

      var time=0;     

      time++;

      document.getElementById("clock").value = time;

   }

     var sixsixsix=setInterval(clock,100);

</script>

</head>

<body>

  <form>

    <input type="text" id="clock" size="50"  />

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

  </form>

</body>

</html>


提问者:玄众妙 2019-05-25 12:02

个回答

  • 玄众妙
    2019-05-25 12:06:29

    因为每次执行time都会初始化为0,然后再加1.吧vat time=0移到方法外面就行了。但是stop停不下来。chrome浏览器。