我正在尝试让我的倒数计时器说0 Yrs, 0 Months, 7 days 0 Mins等,但是无论我尝试输入什么数字,以及尝试得出的数字,我都会得到7349天等答案,这是代码:

// jQuery Countdown styles 1.6.1. - plugin by Keith Wood
function counter_start() {
    var austDay = new Date();
    austDay = new Date(austDay.getFullYear() - 2016, 0 - 7, 0); // Examples: (austDay.getFullYear() + 1, 3 - 1, 6) or (2013, 3 - 1, 6)
    $("#defaultCountdown").countdown({
        until: austDay,
        format: 'DHMS'
    });
}


我看了看,问了其他人,但这不是我的专长,我只是不明白。有人给我个头吗?非常感谢您的阅读。杰米。

最佳答案

您的格式不正确。请试试:

$('#defaultCountdown').countdown({
    until: austDay,
    format: 'YODM'
});



Y =年

O =月

D =天

M =分钟

关于jquery - 更改jQuery Countdown的格式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34788017/

10-12 16:18