Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

为什么会是 null

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


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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...