JavaScript定时器
Posted 缘琪梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript定时器相关的知识,希望对你有一定的参考价值。
定时器
开启定时器
Setinterval间隔型 每隔一段时间重复的执行
SetTimeout延时型 只执行一次
两种定时器的区别
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script> function show(){ alert(\'a\'); } setInterval(show,1000);//每隔1000毫秒弹出一个a </script> </head> <body> </body> </html>
停止定时器
ClearInterval
clearTimeout
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>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> <button> <input id="btn1" type="button" value="开始"/> <input id="btn2" tyPe="button" value="结束"/> </button> </body> </html>
以上是关于JavaScript定时器的主要内容,如果未能解决你的问题,请参考以下文章