基本 jQuery javascript 倒计时

发布于 2024-10-16 10:07:20 字数 430 浏览 3 评论 0原文

我知道这是基本的。但我的 JS 太迟钝了,我无法“自己动手”,而且我厌倦了花几个小时却一事无成。请帮忙!

我通过 Google 和 Google 找到了几十个 JS 倒计时。在 jQuery.org 上。我试图修改的是 http://plugins.jquery.com/project/tgcCountdown 因为这是我需要的那种 BASIC 计数器。但它只提供基于给定 SQL 时间戳的倒计时,我需要固定计时器的第二个选项,例如从现在起 5 分钟。

有什么建议吗?我知道这一定很简单! secs = 300now.getTime() + 300 或类似的东西!我已经很接近了,但我就是无法到达那里!

I KNOW that this is basic. But I'm so JS-retarded I can't "do-it-myself" and I'm tired of spending hours getting nowhere. Please help!

There are dozens of JS countdowns I find by Googling & on jQuery.org. The one I'm trying to modify is http://plugins.jquery.com/project/tgcCountdown because it's the kind of BASIC counter I need. But it only offers the countdown based on a given SQL timestamp, and I need a 2nd option of a fixed timer, e.g. 5 minutes from NOW.

Any advice? I know it's gotta be simple! secs = 300 or now.getTime() + 300 or something like that! I'm so close but I just can't get there!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

送你一个梦 2024-10-23 10:07:20
// Using http://phrogz.net/JS/FormatDateTime_JS.txt
var fiveMinutesFromNow = new Date( (new Date)*1 + 1000 * 60 * 5 );
var timestamp = fiveMinutesFromNow.customFormat( '#YYYY##MM##DD##hhh##mm##ss#' );
console.log( timestamp );
// "20110207122917"

编辑以适用于 Firefox

// Using http://phrogz.net/JS/FormatDateTime_JS.txt
var fiveMinutesFromNow = new Date( (new Date)*1 + 1000 * 60 * 5 );
var timestamp = fiveMinutesFromNow.customFormat( '#YYYY##MM##DD##hhh##mm##ss#' );
console.log( timestamp );
// "20110207122917"

Edit to work for Firefox

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文