JS定时器
2021-04-21 22:28
标签:block eval end on() ber enc play tor 定时器 setTimeout 与 clearTimeout: JS定时器 标签:block eval end on() ber enc play tor 定时器 原文地址:https://www.cnblogs.com/rLydia/p/12247014.htmlsetTimeout/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)
上一篇:[JSOI2009]等差数列
下一篇:简单描述PHP发展历程