计时器

来源:互联网 发布:舞蹈软件哪个好 编辑:程序博客网 时间:2024/06/06 20:21
<html>
<head>
<script type="text/javascript">
var c=0
var t
function timedCount()
{
document.getElementById('txt').value=c
c=c+1
t=setTimeout("timedCount()",1000)
}


function stopCount()
{
clearTimeout(t)
}
</script>
</head>


<body>
<form>
<input type="button" value="开始计时!" onClick="timedCount()">
<input type="text" id="txt">
<input type="button" value="停止计时!" onClick="stopCount()">
</form>


<p>
请点击上面的“开始计时”按钮。输入框会从 0 开始一直进行计时。点击“停止计时”可停止计时。
</p>


</body>


</html>
0 0
原创粉丝点击