stop不管用,但在dreamwear里面停了。。

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

Yvonne_D

2015-08-13 03:19

是这里的编译环境有问题吗?还是我的代码不对

写回答 关注

2回答

  • 伊兮尘昔
    2015-08-13 09:56:20
    已采纳

    是编译环境的问题,这个在本地使用就好

  • seeyouonceagain
    2015-09-17 10:38:50

    在本地试试这个

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

    function start( )

    {

       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>


JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题