在任何浏览器中,基斯伍德倒计时都不算倒计时

时间:2014-04-17 14:09:56

标签: javascript jquery countdown

我正在使用keith wood's countdown的版本略高版本,并且正确加载正确的日期和时间,但秒数并没有下降。我用控制台检查了js,没有出现错误。可以告诉我有什么不妥吗?

    <head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="/js/jquery.countdown.js"></script>
<script type="text/javascript" src="/js/jquery.plugin.js"></script>
    </head>

    <div id="form">
        <div id="topbox">
            <div class="countdown"></div>
        </div>
    </div>

    $(document).ready(function() {

        // start instance of countdown
        $('.countdown').countdown({until: new Date(2014, 9-1, 21, 10), layout: 
            '<ul class="countdown-tabs"><li><a>{dn} <span>{dl}</span></a></li>' + 
            '<li><a>{hn} <span>{hl}</span></a></li>' + 
            '<li><a>{mn} <span>{ml}</span></a></li>' + 
            '<li class="last-child"><a>{sn} <span>{sl}</span></a></li></ul>'});

        $('.bg-switcher input').change(function () {
            // set background photo to value of photo-switcher
            window.location.hash = $(this).attr('id');
            var photo = "url('/images/countdown_" + $(this).attr('id') + ".jpg')";
            $('#canvas').css('background-image', photo);
        });

    });

我也在jfiddle上设置了它,在这里:http://jsfiddle.net/Abk99/2/

1 个答案:

答案 0 :(得分:2)

我在cdn中包含了这个倒计时脚本并且它正在工作。

//cdnjs.cloudflare.com/ajax/libs/jquery-countdown/1.6.3/jquery.countdown.min.js

http://jsfiddle.net/Abk99/1/