JS中的定时器

时间:2021-12-21 19:16:10
JS中定时执行,setTimeout和setInterval的区别,以及l解除方法 :
1.
setTimeout(Expression,DelayTime),在DelayTime过后,将执行一次Expression,setTimeout 运用在延迟一段时间,再进行某项操作。 

setTimeout("function",time) 设置一个超时对象 

setTimeout(aa(),1000) //单位毫秒 
function aa()
{
location.href('地址');
}

2.
setInterval(expression,delayTime),每个DelayTime,都将执行Expression.常常可用于刷新表达式. 

setInterval("function",time) 设置一个超时对象 

$(function(){ 
var handler = function(){
……
}
var timer = setInterval( handler , 1000);
var clear = function(){
clearInterval(timer);
}
});

3.

SetInterval为自动重复,setTimeout不会重复。 

4.

clearTimeout(对象) 清除已设置的setTimeout对象 
clearInterval(对象) 清除已设置的setInterval对象