JS 页面计时器示例代码_Javascript教程-查字典教程网
JS 页面计时器示例代码
JS 页面计时器示例代码
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:varc=0vartfunctiontimedCount(){document.getElementById('txt')...

复制代码 代码如下:

<html>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<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="开始计时!">

<input type="text" id="txt">

<input type="button" value="停止计时!">

</form>

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

<p>timedCount(),1000ms自己调自己。</p>

</body>

</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类