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

为什么我点击取消计时器,没反应呢?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>计时器</title>
<script type="text/javascript">
  var attime
   function clock(){
      var time=new Date();               	  
      document.getElementById("clock").value = time;
   }
 i=setInterval(clock,100)    
</script>
</head>
<body>
  <form>
    <input type="text" id="clock" size="50"  />
    <input type="button" value="Stop"  />
  </form>
</body>
</html>


提问者:暖暖的晴天 2015-09-14 18:13

个回答

  • Briteblue
    2015-09-14 18:31:11

    <input type="button" value="Stop" onclick="clearInterval(i)" />
    没有清空interval