我尝试了一个特定的日期,但是它不起作用,但是在其他超过1个月的日期中,它起作用了,但是我需要一个计数器来在另一周的23日结束,显然不起作用。
我正在使用jquery倒数插件。
日期23/08/2018不起作用(我想要)
$('.counter .row').countdown("2018/08/23", function(event) {
var totalHours = event.offset.totalDays * 24 + event.offset.hours;
$(this).html(event.strftime(totalHours + ' hr %M min %S sec'));
});
日期23/09/2018工作正常
$('.counter .row').countdown("2018/09/23", function(event) {
var totalHours = event.offset.totalDays * 24 + event.offset.hours;
$(this).html(event.strftime(totalHours + ' hr %M min %S sec'));
});
感谢帮助