我正在尝试使用 Keith Wood 的基本 .js 倒数计时器,但在尝试调整布局时遇到了麻烦。因为我无法检查元素(每次我检查它时它都会重新加载并消失,所以我无法确定需要调整哪些 CSS)。
我希望它输出为:XX 天 XX 小时 XX 分钟
我尝试在脚本中添加布局代码,但它什么也没做。
<script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
$('#textLayout').countdown({until: liftoffTime,
layout: '{sn} {sl}, {mn} {ml}, {hn} {hl}, and {dn} {dl}'});
});
</script>
这部分显然应该让它像我想要的那样输出,但它没有
$('#textLayout').countdown({until: liftoffTime,
layout: '{sn} {sl}, {mn} {ml}, {hn} {hl}, and {dn} {dl}'});
});
这是现场网站:用户名是管理员密码是gogogo