求大神帮我看看为什么不能停止,还有我是故意多加了一个j=setTimeout("startCount()",1000);
<!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,j;
function startCount(){
document.getElementById('count').value=num;
num=num+1;
i=setTimeout("startCount()",1000);
}
function stopCount(){
j=setTimeout("startCount()",1000);//这个是故意多加的想看看什么效果,但是却不能停止,但是去掉之后又可以停止了
clearTimeout(j);
}
</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>