0

我正在使用jQuery 倒计时插件和一些我无法让它工作的方法。插件上的文档没有那么有用。我必须实现基本/最小版本,但之后我要抓紧时间找出插件。

我正在尝试创建两件事:

  1. 从 0hr 0min 0sec 开始的经过时间计数器(正计数定时器)
  2. 倒计时计时器(例如从 1 小时 30 分 0 秒)到 0 小时 0 分 0 秒
4

1 回答 1

2

我尝试了基本的倒计时并且它有效。

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>

    <style type="text/css">
    @import "css/jquery.countdown.css";

    </style>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript" src="jquery.countdown.js"></script>

    <script type="text/javascript">
        $(function() {
            var austDay = new Date();
            austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
            $('#CountDown').countdown({ until: austDay });
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div id="CountDown">

    </div>
    </form>
</body>
</html>
于 2010-10-08T08:14:47.253 回答