在我的数据库中,我将日期保存在以下格式的 2 个不同字段中:
日期的第一个字段:03/27/2014 时间的第二个字段:20:30(我以 24 小时格式保存)
现在我正在使用 JQuery 倒数计时器http://keith-wood.name/countdown.html在我的网站上显示计时器。计时器期望值作为年、月和日期传递。
呈现时间的代码是:
<script type="text/javascript">
/*Put your launch date here: */
//Year
var countdown_year = 2014;
//Month
var countdown_month = 3;
//Day
var countdown_day = 23;
//No need to change this line
var timeTo = new Date(parseInt(countdown_year), parseInt(countdown_month-1), parseInt(countdown_day));
jQuery(function ($) {
//var austDay = new Date();
//austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#defaultCountdown').countdown({until: timeTo});
//$('#year').text(austDay.getFullYear());
});
</script>
我不知道如何将我拥有的日期转换为计时器脚本可以接受的格式,并希望有任何帮助。