js 秒表计时器(开始,停止,清零)
Posted 二三旧友
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 秒表计时器(开始,停止,清零)相关的知识,希望对你有一定的参考价值。
<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)
}
function cs()
{
c=0
document.getElementById(‘txt‘).value= 0
}
</script>
</head>
<body>
<form>
<input type="button" value="开始!" id="start" onClick="timedCount()">
<input type="text" id="txt">
<input type="button" value="停止!" id="end" onClick="stopCount()">
<input type="button" value="清零!" id="ss" onClick="cs()">
</form>
</body>
</html>
以上是关于js 秒表计时器(开始,停止,清零)的主要内容,如果未能解决你的问题,请参考以下文章