gpt4 book ai didi

javascript - 重置 setTimeout

转载 作者:IT王子 更新时间:2023-10-29 02:37:27 26 4
gpt4 key购买 nike

我有以下内容:

window.setTimeout(function() {
window.location.href = 'file.php';
}, 115000);

如何通过 .click 函数在倒计时中途重置计数器?

最佳答案

您可以存储对该超时的引用,然后调用 clearTimeout在那个引用上。

// in the example above, assign the result
var timeoutHandle = window.setTimeout(...);

// in your click function, call clearTimeout
window.clearTimeout(timeoutHandle);

// then call setTimeout again to reset the timer
timeoutHandle = window.setTimeout(...);

关于javascript - 重置 setTimeout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1472705/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com