gpt4 book ai didi

javascript - 使用 moment.js 的倒数计时器 mm :ss format

转载 作者:行者123 更新时间:2023-11-29 19:23:14 26 4
gpt4 key购买 nike

我正在使用这个 moment.js

示例代码如下:

var mytimer= moment().format('00:60');

setInterval(counter,500);

function counter(){
mytimer--; // its return NaN error
sym.$("Text").html(mytimer);
}

我怎样才能让它像这样倒计时?

00:6000:59...00:00

提前致谢!

最佳答案

在这种情况下你不需要使用 moment。我觉得它是一个更适合格式化日期而不是计时器的库。请看下面我的例子。它使用回调,因此您可以重复使用它来做任何事情。

    function MyTimer(callback, val) {
val = val || 60;
var timer=setInterval(function() {
callback(val);
if(val-- <= 0) {
clearInterval(timer);
}
}, 1000);
}
new MyTimer(function(val) {
var timerMsg = "00:" + (val >= 10 ? val : "0" + val);
document.getElementById("timer").textContent = timerMsg;
});
<div id="timer"></div>

关于javascript - 使用 moment.js 的倒数计时器 mm :ss format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32141035/

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