jQuery倒数计时器 - 倒数到每月结束,首先开始?

时间:2014-06-03 07:48:29

标签: jquery timer countdown

客户希望从每个月的第一天(服务器时间=当地时间=应该使用的时间)开始每月销售的倒计时,并将其倒计时直到月末(28天7)小时6分钟)。这背后的逻辑怎么样?是否有一个库/插件默认执行此操作?

任何正确方向的指针都会令人惊叹。

1 个答案:

答案 0 :(得分:3)

你必须检查一下,我认为这就是你所需要的:

http://keith-wood.name/countdown.html

<强>更新

这是您需要的代码:

    <head>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
        <script src="jquery.plugin.js"></script>
        <script src="jquery.countdown.js"></script>
        <script>
            $(function () {
                var date = new Date();
                date = new Date(date.getFullYear(), date.getMonth() + 1, 1);
                $('#defaultCountdown').countdown({until: date});
            });
        </script>
    </head>

    <body>
        Time left:
        <div id="defaultCountdown"/>        
    </body>