gpt4 book ai didi

javascript - 只需 5 分钟即可在 javascript 中计时

转载 作者:行者123 更新时间:2023-11-30 12:51:43 28 4
gpt4 key购买 nike

任何人都可以给我一些关于如何使 javascript 计数计时器在 5 分钟后停止的小提示,我尝试过的代码低于我使用的代码,但我只想只用 5 分钟它在 5 分钟后停止。

    <script type="text/javascript">
var sec = 0;
function pad ( val ) { return val > 9 ? val : "0" + val; }
setInterval( function(){
document.getElementById("seconds").innerHTML=pad(++sec%60);
document.getElementById("minutes").innerHTML=pad(parseInt(sec/60,10));
}, 1000);
</script>

this is to echo out the timer: <label id="minutes">00</label>:<label id="seconds">00</label>

最佳答案

将每 1000 毫秒(1 秒)运行一次,并在 300 秒(5 分钟)后停止。

var sec = 0;
var counter = setInterval(function(){
// Your code
sec++;
if (sec == 300) clearInterval(counter);
}, 1000);

JSFiddle

关于javascript - 只需 5 分钟即可在 javascript 中计时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20735940/

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