Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

clearTimeout 无法清除定时器

var timer = null
timer = setTimeout(() => {
window.clearTimeout(timer)
console.log(timer)
}, 1000)
为什么打印timer 返回的不是null ,而是数字?
求讲解


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

为什么会是 null

你搁哪看着的 clearTimeout(timeoutID) 以后 timeoutID 会变 null 的?


而且你这段代码有什么意义么?setTimeout 本身就是只执行一次,结果你在执行回调里去 clearTimeout,都执行完了你清理不清理有啥用呢?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
...