标签:延迟 span class code timeout interval time clear 定时器
1.setInterval是间隔执行,间隔多久执行一次,执行多次
setInvertal(function(){},500)
2.setTimeout是延迟执行,执行一次
setTimeout(function(){},500)
清除定时器
param=setInterval(function(){},300) clearInterval(param)关闭定时器
标签:延迟 span class code timeout interval time clear 定时器
原文地址:http://www.cnblogs.com/summerXll/p/6493002.html