老神棍
2015-03-21 17:32
感觉这段代码有问题,
如果多次点击start,那必须按相同次数的stop才能停止
<!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);
document.getElementById("start").disabled="false";
document.getElementById("stop").disabled="";
}
function stopCount(){
clearTimeout(i);
document.getElementById("start").disabled="";
document.getElementById("stop").disabled="false";
}
</script>
</head>
<body>
<form>
<input type="text" id="count" />
<input id="start" type="button" value="Start" onclick="startCount()" />
<input id="stop" type="button" value="Stop" onclick="stopCount()" />
</form>
</body>
</html>
多点几次start还会加速啊。。。怎么回事
就是啊,我也发现了,关键它用的都是一个变量i控制停止的,为什么还能实现多次点击的开始和停止
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题