0

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
4

1 に答える 1

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)));
 ?>
于 2013-04-11T06:29:24.253 に答える