JS定时器

2021-04-21 22:28

阅读:319

标签:block   eval   end   on()   ber   enc   play   tor   定时器   

setTimeout/clearTimeout

let timerId = setTimeout(func|code, [delay], [arg1], [arg2], ...)
// 在一秒后执行func
setTimeout(function() {
 console.log(1)
}, 1000)
?
// 一秒后,将该字符串当作代码来执行(eval函数)
setTimeout(‘console.log(1)‘, 1000)
?
// func有参数时
setTimeout(function(a,b,c) {
 console.log(a, b, c)
}, 1000, 1, 2, 3)

setTimeout 与 clearTimeout:

JS定时器

标签:block   eval   end   on()   ber   enc   play   tor   定时器   

原文地址:https://www.cnblogs.com/rLydia/p/12247014.html


评论


亲,登录后才可以留言!