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

来源:8-4 取消计时器clearInterval()

暖暖的晴天

2015-09-14 18:13

<!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>


写回答 关注

1回答

  • Briteblue
    2015-09-14 18:31:11
    <input type="button" value="Stop" onclick="clearInterval(i)" />
    没有清空interval


JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题