我一直在使用 keith woods 倒计时。
我将它与经典的 asp 拍卖设置一起使用
我的问题是我需要同步的时间我可以看到 PHP 的代码但似乎无法让它运行 ASP
$(selector).countdown({
until: liftoffTime,
serverSync: serverTime
});
function serverTime() {
var time = null;
$.ajax({
url: 'http://myserver.com/serverTime.php',
async: false,
dataType: 'text',
success: function (text) {
time = new Date(text);
},
error: function (http, message, exc) {
time = new Date();
}
});
return time;
}
<? php
$now = new DateTime();
echo $now - > format("M j, Y H:i:s O").
"\n"; ?>
任何帮助转换会很棒吗?