gpt4 book ai didi

javascript - 使用 jQuery stop() 暂停超时功能

转载 作者:行者123 更新时间:2023-12-03 06:09:58 25 4
gpt4 key购买 nike

我有两个按钮。第一个让延迟 3 秒出现警报,另一个则在 3 秒后出现。第二个按钮必须能够暂停 setTimeout 函数。

因此,当第一个警报出现并且我单击“暂停”时,第二个警报不应显示。我知道我已经接近解决方案,但它仍然不起作用。我的代码是:

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#start").click(function () {
setTimeout(myFunction, 3000);
setTimeout(myFunction, 6000);
});
$("#stop").click(function () {
$("myFunction").stop();
});
});

function myFunction() {
alert('Hello');
}
</script>
</head>
<body>
<p>
<button id="start">Start</button>
<button id="stop">Pause</button>
</p>
</body>
</html>

最佳答案

要实现此目的,您需要存储对 setTimeout() 调用的引用,然后在需要时对其调用 clearTimeout()。试试这个:

$(document).ready(function() {
var timers = [];

$("#start").click(function(){
timers.push(setTimeout(myFunction, 3000));
timers.push(setTimeout(myFunction, 6000));
});

$("#stop").click(function(){
timers.forEach(function(timer) {
clearTimeout(timer);
});
});
});

function myFunction() {
console.log('Hello'); // note: use console.log to debug, especially with async/blocking functions
}

关于javascript - 使用 jQuery stop() 暂停超时功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39365776/

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