1

我一直在使用 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"; ?>

任何帮助转换会很棒吗?

4

1 回答 1

0

如果您确实在谈论经典的 ASP 而不是 ASP.NET,请尝试以下操作:

<%
    Dim dt
    dt = Now()
    Response.Write MonthName(Month(dt),True) & " " & Day(dt) & ", " & Year(dt) & " " & Right("0" & Hour(dt), 2) & ":" & Right("0" & Minute(dt), 2) & ":" & Right("0" & Second(dt), 2) & vbLf
%>
于 2013-10-16T21:43:38.597 回答