Rumah > Artikel > hujung hadapan web > javascript定时器怎么停止
在javascript中,可以使用clearInterval方法使定时器停止,语法“clearInterval(由setInterval方法设置的timeout)”,该方法的参数必须是由setInterval返回的ID值。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
<html> <head> <meta charset="utf-8"> <title>无标题文档</title> <style type="text/css"> #btn1:hover,#btn2:hover { background: red; } </style> </head> <body> <input type="button" id="btn1" value="开启" /> <input type="button" id="btn2" value="关闭" /> <script> 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> </body> </html>
clearInterval() 方法可取消由 setInterval() 设置的 timeout。
clearInterval() 方法的参数必须是由 setInterval() 返回的 ID 值。
语法
clearInterval(id_of_setinterval)
【推荐学习:javascript高级教程】
Atas ialah kandungan terperinci javascript定时器怎么停止. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!