為什么沒有點start他就自動運行了
<!DOCTYPE HTML>
<html>http://www.xianlaiwan.cn/code/1026#editor-tabs-html
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>計時器</title>
</head>
<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>
2016-11-20
?把第十六行的setTimeout(startCount,1000)去掉就可以了。為了消除一直猛按start的時候數字飆升的bug,最好在startCount()函數中馬上執行一次clearTimeout(i);