[JavaScript基础] 定时器

setInterval() 每隔多少毫秒,执行一次(循环)

var timer = setInterval(function(){
  
},1000)
setInterval([方法],[时间])

clearInterval() 取消循环

clearInterval(timer)

setTimeout() 延迟多少毫秒,执行一次(只执行一次)
clearTimeout()

定时器内部的this都指向window

你可能感兴趣的:([JavaScript基础] 定时器)