我正在使用以下jQuery插件:jQuery Countdown

我正在尝试将其倒计时到每天17:00(5:00 PM),但似乎无法设置时间。

任何帮助都欢迎。

我的代码是:

$(function() {
    var now = new Date()
    var since = new Date(now.getFullYear(), now.getMonth(), now.getDay(), 17, 00);
    $('#noDays').countdown({until: since, format: 'HMS'});
});


此代码使计时器停留在0。

最佳答案

试试这个(和示例here):

$(function() {
    var liftoff = new Date();
    liftoff = new Date(liftoff.getFullYear(), liftoff.getMonth(), liftoff.getDate(), 17, 0, 0);

    $('#noDays').countdown({until: liftoff});
});

关于javascript - 如何使用jQuery Countdown定位特定时间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7887516/

10-12 00:55