停止之后怎样再次启动

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

慕瓜5202664

2019-12-26 11:45

<!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=new Date();                     
      document.getElementById("clock").value = time;
      
   }
    var i=setInterval('clock()',100);
    
</script>
</head>
<body>
  <form>
    <input type="text" id="clock" size="50"  />
    <input type="button" value="Stop" onclick='clearInterval(i)' />
    <input type='button'value='start' onclick='clock()'>
  </form>
</body>
</html>

写回答 关注

1回答

  • 晓之蛇
    2019-12-27 09:00:40
    <input type='button'value='start' onclick='setInterval("clock()",100)'>


JavaScript进阶篇

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

467393 学习 · 21877 问题

查看课程

相似问题