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

停止之后怎样再次启动

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

提问者:慕瓜5202664 2019-12-26 11:45

个回答

  • 晓之蛇
    2019-12-27 09:00:40

    <input type='button'value='start' onclick='setInterval("clock()",100)'>