我试图通过 jquery ajax 向 php 文件发送多个调用,并使用这个 Jquery 插件CountDown打印一个倒数计时器
JS
$(document).ready(function () {
$('.timer').each(function () {
var time = null;
$.ajax({
url: 'serverTime.php',
async: false,
dataType: 'text',
success: function (text) {
time = new Date(text);
},
error: function (http, message, exc) {
time = new Date();
}
});
$('.timer').countdown({
until: time,
compact: true,
format: 'HMS'
});
});
})
这是我的PHP
<?php
$now = time() + 9999;
echo date("M j, Y H:i:s",$now)."\n";
$now1 = time() + 999;
echo date("M j, Y H:i:s",$now1)."\n";
?>
我需要显示每次打印到单独的 div 中,但这就是我得到的
NaN:NaN:NaN
NaN:NaN:NaN