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

下面是我的代码,为什么start和stop两个按钮不管用哎

<!DOCTYPE HTML>

<html>

<head>

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

<title>计时器</title>


<script type="text/javascript">

  var num=0;

  var i;

  function startCount(){

    document.getElementById('count').value=num;

    num=num+1;

    i=setTimeout("startCount()",1000);

  }

  setTimeout("startCount()",1000);

  function stopCount(){

    clearTimeout(i);

  }

</script>

</head>

<body>

  <form>

    <input type="text" id="count" />

    <input type="button" value="Start" onClick="startCount()"  />

    <input type="button" value="Stop"  onClick="stopCount()" />

  </form>

</body>

</html>


正在回答

5 回答

没有问题啊  慕课网网页问题吧

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

错误如下:

https://img1.sycdn.imooc.com//5bfe7a95000159be14581078.jpg

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

我的代码:


<!DOCTYPE HTML>

<html>

<head>

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

<title>计时器</title>


<script type="text/javascript">

  var num=0,i;

  function startCount() {

      document.getElementById('count').value=num;

      num++;

      i = setTimeout("startCount()",1000);

  }

  function stopCount(){

    clearTimeout(i);

  }

</script>

</head>

<body>

  <form>

    <input type="text" id="count" />

    <input type="button" value="Start" onclick="startCount()" />

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

  </form>

</body>

</html>


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

你这个代码不会点击触发函数。而是直接触发,因为你在startCount()下面又加了一个setTimeout("startCount()",1000);这样的定时器,所以它会隔1秒后直接执行你上面的这个startCount()函数,

所以你点击开始是没用的,但是你点击停止有用,然后再点击开始也是可以的

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

https://img1.sycdn.imooc.com//5bfa0916000115e500800062.jpg首先C应该是小写

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

举报

0/150
提交
取消

下面是我的代码,为什么start和stop两个按钮不管用哎

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