秒计时代码
- 秒计时代码
发布时间:2009-10-24 类别:javascript技术 来源:侠客工作室 -
- 1
- 2
- 3
- 4
- 5
<html>
<head>
<title>秒计时代码</title>
<script language="javascript">
<!--
var count=0;
var timeID;
function timeCount()
{
document.getElementById(‘timetxt‘).value=count;
count++;
}
function beginCount()
{
timeID=setInterval("timeCount()",1000);
}
function stopCount()
{
clearInterval(timeID);
}
-->
</script>
</head><body>
<input type="button" value="开始计时" onclick="beginCount()"/>
<input id="timetxt" type="text" />
<input type="button" value="停止计时" onclick="stopCount()"/></body>
</html>
- ☆☆☆技术交流群:5684178☆☆☆
- 上一篇:进度条代码
- 下一篇:全选反选复选框函数代码