setTimeout|setTimeout & setInterval
【setTimeout|setTimeout & setInterval】setTimeout(function,time)——定时器,定时器超时时执行代码。
clearTimeout(function,time)——取消setTimeout()。
setInterval(function,time)——设置一个自动重复的定时器,每次超过指定时间,执行一次。
clearInterval(function,time)——取消setInterval()。
eg:
无参:
function hello() {
console.log(`hello`);
}
window.setInterval(hello,1000);
有参:
function hello(_name){
return function(){
alert("hello,"+_name);
}
}
window.setTimeout(hello('sylvia'),3000);
推荐阅读
- 组会|MITRE ATT&CK超详细学习笔记-01(背景,术语,案例)
- 金山&Q管win10|金山&Q管win10 锁定Edge算法分析
- 一个setTimeout问题小探索
- 力扣之只出现一次的数字&多数元素
- Tampermonkey究竟有什么用?
- Kubernetes|k8s创建pv&pvc
- k8s持久化存储PV&PVC部署
- 妖怪物语-贰&人偶师
- RxSwift|RxSwift by Examples #3 – Networking
- 小记setTimeout