1. 程式人生 > >百度前端學習日記20——定時器

百度前端學習日記20——定時器

out val interval fun tint 日記 tin clear 對象

setTimeout("function",time) 設置一個超時對象

setInterval("function",time) 設置一個超時對象

SetInterval為自動重復,setTimeout不會重復。

clearTimeout(對象) 清除已設置的setTimeout對象

clearInterval(對象) 清除已設置的setInterval對象

百度前端學習日記20——定時器