0
我有一個倒數計時器設置完成10月1日。設置defaultCountdown jquery倒計時到特定時間
<script type="text/javascript" src="Count/jquery.countdown.js"></script>
<script type="text/javascript">
$(function() {
var austDay = new Date();
austDay = new Date(2011, 10-1, 01)
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
});
</script>
但是,我如何將它設置爲在午夜不完,但是在2011年10月1日上午9點完成?
感謝
由於某些原因,我不得不使用它來到10月1日 – Beginner
@Beginner Yah,我應該記住這一點。 Javascript月數從零而不是1.混淆。 – Ariel