我正在尝试使用此代码在网页上实现 Keith Wood Countdown,放置在 end body 标记之前:
$(function(){
var untilDate = new Date(2016,4,4,8,0);
console.log(untilDate.getFullYear() + "-" + untilDate.getMonth() + "-" + untilDate.getDate());
$("#next-departure").countdown($.countdown.regionalOptions["fr"]);
$("#next-departure").countdown(
{
until:untilDate,
format:'yowdHMS'
}
);
});
控制台中没有错误并且日期是正确的,但是......总是显示: 没有倒计时运行
关于我缺少什么的任何想法?