我需要jQuery.countdown
根据网站中的文档使用 MomentJS 在同一页面上使用时区感知设置多个实例:
到目前为止,我有这个:
<div data-countdown="2018-01-01 12:00:00"></div>
<div data-countdown="2019-01-01 12:00:00"></div>
<div data-countdown="2020-01-01 12:00:00"></div>
<script>
jQuery( document ).ready(function() {
jQuery("[data-countdown]").each(function() {
var jQuerythis = jQuery(this), finalDate = jQuery(this).data("countdown");
finalDate = moment.tz(finalDate, "Europe/London"); // <-- ***THIS IS NOT WORKING***
jQuerythis.countdown(finalDate, function(event) {
jQuerythis.html(event.strftime("%D days %H:%M:%S"));
});
});
});
</script>
但它不起作用。我认为以下行总体上是不正确的:
finalDate = moment.tz(finalDate, "Europe/London");
MomentJS 安装正确,如果我删除上面的一行,一切正常,但没有时区意识。
请问您能提供一些建议吗?