两个延时函数创建延时对象:
注意第一个参数传入方法的字符串形式
setTimeout("function",time):延时time后执行一次
setInterval("function",time):每隔time后执行一次
清除延时对象:
clearTimeout(对象)
clearInterval(对象)
window对象两个方法实现延时:
window.setTimeout()/window.setInterval() 两者使用方法类似
function hello(){ alert("hello"); } window.setTimeout(hello,5000);
function hello(){ alert("hello"); } window.setTimeout("hello()",5000);
延时期限到达之前取消延执行,可以使用window.clearTimeout(timeoutId)方法,该方法接收一个id,表示一个定时器。这个id是由setTimeout方法返回的:
function hello(){alert("hello");} var id=window.setTimeout(hello,5000); document.onclick=function(){window.clearTimeout(id);}
setTimeout实现setInterval:
将setTimeout放入一个方法里,并调用该方法