您的位置:首页 > Web前端 > JavaScript

js 秒表计时器(开始,停止,清零)

2015-08-16 16:25 645 查看
<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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: