0

我在这里使用这个奇妙的 jQuery 代码:http: //hilios.github.io/jQuery.countdown/

我正试图让它在结束日期之后工作。你有什么主意吗?它应该显示如下内容:

3 semaines soit 10 heures et 10 分钟

$('#timeout').countdown(finalDate, {elapse: true})
.countdown("2015/05/01 12:00:00", function(event) {
     $(this).text(
       event.strftime('%-w %!w:semaine,semaines; soit %-D %!D:jour,jours; et %-H %!H:heure,heures;')
   );
});

谢谢!

4

1 回答 1

1

您的代码中有一些错误。

使用Doc中给出的示例,如果您像这样编写它,它将完美地工作:

  $('#timeout').countdown("2015/05/05 12:00:00", {elapse: true})
               .on('update.countdown', function(event) {
                   $(this).text(
                       event.strftime('%-w %!w:semaine,semaines; soit %-D %!D:jour,jours; et %-H %!H:heure,heures;')
                   );
                });

我以JsFiddle为例

于 2016-06-03T18:57:18.630 回答