其他分享
首页 > 其他分享> > js 秒表计时器(开始,停止,清零)

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>



标签:timedCount,function,document,value,js,getElementById,txt,清零,秒表
来源: https://www.cnblogs.com/0826sw/p/11915283.html