0

私はjQueryカウントダウンプラグインを使用していますが、どうすればそれを機能させることができません。プラグインのドキュメントはそれほど役に立ちません。基本/最小バージョンを実装する必要がありましたが、その後、プラグインを理解するために尻尾をつかんでいます。

私は2つのものを作成しようとしています:

  1. 0時0分0秒から始まる経過時間カウンター(カウントアップタイマー)
  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 に答える