2

我正在为即将推出的页面使用 keith Wood jquery 倒计时插件,我想添加 7 天 10 小时 40 分钟倒计时。你可以在这里找到更多http://keith-wood.name/countdown.html

这是我的代码:

function countdown () {

    // src: http://keith-wood.name/countdown.html
    layout = $('.timer').html();
    var newYear = new Date(); 
    newYear = new Date(newYear.getDate() + 7, 1 - 1, 1); 
    $('.timer').countdown({until: newYear, layout: layout}); 

}

提前致谢!

4

1 回答 1

0

使用此代码:

function countdown () {

    layout = $('.timer').html();
    date =  new Date("2016-05-20T13:00:00");
    var d = new Date(0);
    d.setUTCSeconds(date);
    $('.timer').countdown({until: date, layout: layout}); 


}
于 2016-05-13T15:31:48.620 回答