我正在努力使用沿 laravel 5.6 安装的 Hilios 的 JQuery 倒数计时器
我有生成值的 div,如下所示:
<div data-countdown="{{ $data->expiration }}"></div>
生成时的结果如下所示:
<div data-countdown="2018-06-15 17:25:30"></div>
所以在视图文件的底部,我用倒计时脚本实现了 jQuery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js" type="application/javascript"></script>
<script src="https://cdn.rawgit.com/hilios/jQuery.countdown/2.2.0/dist/jquery.countdown.min.js" type="application/javascript"></script>
<script type="application/javascript">
$('[data-countdown]').each(function() {
var $this = $(this);
var finalDate = $(this).data('countdown');
$this.countdown(finalDate, function(event) {
$this.html(event.strftime('%D days %H:%M:%S'));
});
});
</script>
问题是它根本不起作用,更糟糕的是 - 我在控制台中没有收到任何错误......
提前感谢您的任何建议,这可能有助于解决这个问题。