如何在倒数计时器中设置目标日期

时间:2016-03-28 09:20:55

标签: javascript php html timer countdown

我有这个来自的代码 http://keith-wood.name/countdown.html

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>jQuery Countdown</title>
<link rel="stylesheet" href="jquery.countdown.css">
<style type="text/css">
#defaultCountdown { width: 240px; height: 45px; }
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="jquery.plugin.js"></script>
<script src="jquery.countdown.js"></script>
<script>
$(function () {

    var austDay = new Date();
    austDay = new Date(austDay.getFullYear() + 1, 3 - 1, 29);
    $('#defaultCountdown').countdown({until: austDay});
    $('#year').text(austDay.getFullYear());


});
</script>
</head>
<body>


<div id="defaultCountdown"></div>
</body>
</html>

我的问题是如何在getFullYear()之后设置包含在此行中的目标时间:

austDay = new Date(austDay.getFullYear() + 1, 3 - 1, 29);

将来自变量。

btw,+ 1,3-1,29相当于2016年3月29日。

提前致谢!

0 个答案:

没有答案