gpt4 book ai didi

javascript - 在jQuery中制作倒计时功能

转载 作者:行者123 更新时间:2023-11-28 12:44:23 25 4
gpt4 key购买 nike


我是新手,需要你的帮助。我在找出天、小时、分钟和秒时遇到问题。我不知道要更新什么,分钟后秒数将达到 60,小时和天也是如此。
我正在尝试以天/小时/分钟/秒的格式倒计时给定日期。
Here is the link of what I've done so far.
提前致谢! :)

最佳答案

var seconds = 1355998990 - new Date().getTime(), // whatever
minutes = Math.floor(seconds/60),
hours = Math.floor(minutes/60),
days = Math.floor(hours/24);

seconds %= 60;
minutes %= 60;
hours %= 24;

console.log("d: " + days + " h: " + hours + " m: " + minutes + " s: " + seconds);

这样可以吗?

另请务必查看 this ;也许你可以在那里得到一些灵感。

关于javascript - 在jQuery中制作倒计时功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9615976/

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