JQuery最终倒计时具有多个实例和时间

时间:2016-12-11 07:03:37

标签: javascript jquery countdown final

我尝试使用多个实例和时间的JQuery最终倒计时,但似乎无法使其正常工作。日期data-countdown的格式为YYYY-MM-DD HH:MM:SS

$('[data-countdown]').each(function() {
              var $this = $(this), finalDate = $(this).data('countdown');
              console.log(finalDate)
              $this.countdown(finalDate,function(event) {
                  $this.html(event.strftime('%D days %H:%M:%S'));
                })
                .on('finish.countdown', function(event) {
                  $(this).html('This offer has expired!')
                    .parent().addClass('disabled');

                });
            });

任何人有任何想法或取得同样的成就吗?感谢

0 个答案:

没有答案