gpt4 book ai didi

javascript - 有没有办法可以在分钟变化时使用 momentjs 进行循环?

转载 作者:行者123 更新时间:2023-12-02 23:42:47 24 4
gpt4 key购买 nike

我想使用 momentjs 在它改变的那一刻找到偶数和奇数分钟。

我已经阅读了 momentjs 文档,并且通过一些搜索没有找到任何我可以使用的东西或如何应用它。最终我想使用jquery使用addClass和removeClass每分钟更改导航栏的主题,而不是写入控制台。

var now = new Date();
var minutes = now.getMinutes();
if(minutes % 2 == 0){
console.log('Time is even');
} else {
console.log("Time is odd");

最佳答案

您可以使用setInterval函数以指定的时间间隔重复某些代码。示例:

setInterval(() => {
//This code gets executed every second(ish)
const now = new Date();
const minutes = now.getMinutes();
const seconds = now.getSeconds();
console.log(`${minutes}:${seconds}`);
}, 1000);

在您的情况下,您可能希望将间隔设置为 1000*60 以每分钟运行代码。请记住,setInterval 函数不保证精确到毫秒的间隔,但对于大多数情况来说它已经足够了。

关于javascript - 有没有办法可以在分钟变化时使用 momentjs 进行循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55995589/

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