我正在开发基于优惠券的网站,我需要将倒计时脚本(http://hilios.github.io/jQuery.countdown/)与数据表一起使用。
我遇到页面更改事件停止第一页的计时器并且计数在其他页面上不起作用。
这是我每次加载页面时更新计数器的代码
$('#sample_2').on( 'page.dt', function () {
alert("page changed");
$('[data-countdown]').each(function() {
var $this = $(this), finalDate = $(this).data('countdown');
$this.countdown(finalDate, function(event) {
$this.html(event.strftime('%D days %H:%M:%S'));
});
}).on('finish.countdown', function(event) {
$(this).addClass("label label-sm label-danger");
$(this).html('This offer has expired!');
});
} );
HTML 代码
<tr>
<td>f2 coupon</td>
<td>
<div data-countdown="2015-05-18 12:09:00" class="label label-sm label-success">20 days 15:04:54</div>
</td>
<td class="numeric">1</td>
<td class="numeric">1</td>
</tr>
如果需要,请随时询问更多信息
请指教。
-尼克斯