我已经玩这个太久了,我想我最好寻求一些帮助,因为我真的需要继续前进:) 我对 jquery 很陌生
我有显示 Keith Wood 的倒数计时器,但时间不对,未来日期是 3 天后,但我得到 217224 天。日期是 mysql DATETIME 即;2012-11-15 07:00:30
http://keith-wood.name/countdown.html
我只需要显示天、小时、分钟、秒,但是,如果我删除 Y,m 什么都不会显示。这是我的代码,如果有任何帮助,我会非常高兴!
$(function () {
var austDay = new Date(<?php
$time = strtotime($row['auto_accept']);
echo date('Y', $time);
echo date('m', $time);
echo date('d', $time-1);
echo date('H', $time);
echo date('i', $time);
echo date('s', $time);?>);
$('#countdown').countdown({until: austDay, format: 'dHMS'});
});
好的,我似乎可以使用:
$(function () {
var austDay = new Date(<?php
$endtime = strtotime($row['auto_accept']);
echo date('Y,m,', $endtime);
echo (date('j', $endtime)-30);
echo date(',h,i,s', $endtime);
?>);
$('#countdown').countdown({until: austDay, format: 'dHMS'});
});
正如Tomalak所说,我只需要更好地优化代码,我会查看手册;)