我在我的网站上使用这个倒计时,这里
您可以在此处查看脚本(太大,无法发布)
这是head部分的代码:
<script type="text/javascript" src="javascripts/jquery.countdown.js"></script>
<script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('.countdown-container').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
});
</script>
我希望能够更改倒计时持续时间,希望可以更改为我想要的任何时间。
如果有人可以提供见解,那就太棒了。