如何使用jQuery Countdown定位特定时间

时间:2011-10-25 09:54:07

标签: javascript jquery

我正在使用这些jQuery插件:jQuery Countdown

我试图让它每天倒计时到17:00(下午5:00),但我似乎无法设定时间。

欢迎任何帮助。

我的代码是:

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

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

2 个答案:

答案 0 :(得分:2)

试试这个(以及工作示例here):

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

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

答案 1 :(得分:1)

认为你在寻找这个:

var now = new Date()
var since = new Date(now.getFullYear(), now.getMonth(), now.getDay(), 17, 00);