我尝试使用多个实例和时间的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');
});
});
任何人有任何想法或取得同样的成就吗?感谢