JQuery倒计时器插件的问题

发布于 2024-10-19 21:14:30 字数 721 浏览 2 评论 0原文

我正在使用这个插件创建一个简单的倒计时器: http://keith-wood.name/countdown.html

我的问题是月份的输出如布局参考中所述似乎不起作用。

此页面:http://keith-wood.name/countdownRef.html#layout 描述月份的输出类似于 {ov} ,但使用以下代码只会给我零:

                $(function () {
                    var austDay = new Date();
                    austDay = new Date(2011, 6, 21);
                    $('#defaultCountdown').countdown({until: austDay, layout:'<b>{ov} {dl} and'+'{hn} {hl}, {mn} {ml}, {sn} {sl}</b>'});
                });

我试图让它用分隔符吐出月份、天、小时和分钟。

我正在使用 JQuery v.1.4.4

I'm using this plugin to create a simple countdown timer:
http://keith-wood.name/countdown.html

My issue is that the output of months as described in the layout reference doesn't seem to work.

This page: http://keith-wood.name/countdownRef.html#layout describes the output of months to be something like {ov} but that just gives me zero with the following code:

                $(function () {
                    var austDay = new Date();
                    austDay = new Date(2011, 6, 21);
                    $('#defaultCountdown').countdown({until: austDay, layout:'<b>{ov} {dl} and'+'{hn} {hl}, {mn} {ml}, {sn} {sl}</b>'});
                });

I'm trying to get it to spit out the months, days, hours and minutes with separators.

I'm using JQuery v.1.4.4

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

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

发布评论

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

评论(1

潇烟暮雨 2024-10-26 21:14:30

只需将布局字符串更新为以下内容:

layout:'<b>{on} {ol} {dn} {dl} and '+'{hn} {hl}, {mn} {ml}, {sn} {sl}</b>'

字母“o”是此插件的月份代码,以下“n”表示该日期时间部分类型的数据,“l”表示日期时间部分的标签类型。

Just update your layout string to the following:

layout:'<b>{on} {ol} {dn} {dl} and '+'{hn} {hl}, {mn} {ml}, {sn} {sl}</b>'

The letter 'o' is the code for month with this plugin, with the following 'n' for the data for that datetime part type, and the 'l' for the label of the datetime part type.

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