jquery倒计时插件有多个ajax调用?

时间:2013-04-11 06:24:57

标签: php javascript jquery

我试图通过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

1 个答案:

答案 0 :(得分:0)

你的ajax药水需要改变

 $.ajax({
       url: 'serverTime.php', 
       async: false, 
       dataType: 'json', 
       success: function(text) { 
          var time1 = new Date(text.time1);
          var time2 = new Date(text,time1);

       }, 
       error: function(http, message, exc) { 
            time = new Date(); 
       }

同时更改php代码

 <?php
  $now = time() + 9999; 
  $now1 = time() + 999; 
  echo json_encode(array('time1' => date("M j, Y H:i:s",$now1),'time2' => date("M j, Y H:i:s",$now2)));
 ?>