jquery.countdown.js显示错误的日期

时间:2015-01-08 00:01:22

标签: javascript jquery countdown

以下是我在jquery倒计时使用的代码,但它正在计算错误的date.i需要将其设置为2015年1月1日,尝试将月份设置为01(月份从零开始)但在这种情况下计数器消失了

<script>
    $('#clock').countdown('2015/02/01').on('update.countdown', function(event) {
        var $this = $(this).html(event.strftime(''
        + '<ul class="co"><li><a href=""><span>%-d</span><br>Days </a></li>'
        + '<li><a href=""><span>%H</span><br> Hours </a></li>'
        + '<li><a href=""><span>%M</span><br> Minutes </a></li>'
        + '<li><a href=""><span>%S</span><br> Seconds</a></li></ul>'));
    });
</script>   

1 个答案:

答案 0 :(得分:1)

假设您要在2015年2月1日之前创建倒计时,则应使用以下代码:

$('#clock').countdown({until: new Date(2015, 12-11, 1)}))