為啥我用clearInterval(i)也能停
<!DOCTYPE HTML>
<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);
? }
??
? function stopCount(){
? ? clearInterval(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>
2015-03-31
因為你把i變量定義為全局變量了