javascript中两种定时器的区别
(1)定时器setTimeOut()与clearTimeOut()
setTimeOut()使用方法:< …… onClick="timerID=setTimeout('display ()',5000)">
1.设置定时器的名称为timeID以便以后终止定时器时用到clearTimeOut(timeID)。
2.display()方法要使用单引号。
3.点击事件发生5000毫秒之后执行display()方法一次。
(2)定时器setInterval()与clearInterval()
setInterval()使用方法:<……onClick="timerID=setInterval ('display ()',5000)">
1.设置定时器的名称为timeID以便以后终止定时器时用到clearInterval(timeID)。
2.display()方法要使用单引号。
3.点击事件发生5000毫秒之后重复的执行display()方法。直到关闭窗口或者调用clearInterval()