定时器的开启与关闭

来源:互联网 发布:网页视频录制软件 编辑:程序博客网 时间:2024/05/19 13:43
<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><script>window.onload=function(){var oBtn1=document.getElementById('btn1');var oBtn2=document.getElementById('btn2');var timer=null;oBtn1.onclick=function(){timer=setInterval(function(){alert('a');},1000);}oBtn2.onclick=function(){clearInterval(timer);}}</script></head><body><input id="btn1" type="button" value="开启" /><input id="btn2" type="button" value="关闭" /></body></html>

0 0
原创粉丝点击