为了账号安全,请及时绑定邮箱和手机立即绑定

鄙人不才,继续暂停,继续暂停

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

           function start() {   

             i = setInterval("clock()",100);

           }

           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="start()" />

          

      </form>

    </body>

</html>


正在回答

3 回答

<!DOCTYPE HTML>

<html>

<head>

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

<title>计时器</title>

<script type="text/javascript">

   var  s=false;

   function clock(){

      var time=new Date();                  

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

   }

     var i=setInterval(clock,1000);

     function fc()

     {

         if(s)

         {

             s=false;

             i=setInterval(clock,1000)

         }else

         {

             s=true;

             clearInterval(i);

         }

     }

</script>

</head>

<body>

  <form>

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

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


  </form>

</body>

</html>


0 回复 有任何疑惑可以回复我~

再点停止就失效了

0 回复 有任何疑惑可以回复我~

看到有好多人问继续暂停继续暂停怎么搞,就这么搞吧,马马虎虎

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

鄙人不才,继续暂停,继续暂停

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信