我想显示服务器使用的UTC当前日期和时间。我如何强制javascript使用正确的日期和时间!我只是希望Javascript以UTC格式显示服务器使用的正确日期 - 无论客户端的时间/日期设置是什么(即提前12小时或错误设置日期等)。这可能吗?
答案 0 :(得分:0)
这将为您提供UTC的日期
var now = new Date();
var now_utc = new Date(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate(), now.getUTCHours(), now.getUTCMinutes(), now.getUTCSeconds());
答案 1 :(得分:0)
如果你想在客户端上执行javascript时使用服务器的日期时间,服务器必须动态地将它的时间提供给客户端,作为单独的http请求或者与调用javascript的网页一起
答案 2 :(得分:0)
我在我的aspx页面中添加了一个js文件(date.js)。 并编写一个函数来显示日期时间。
<div id="clock">
</div>
function UpdateUTCDateTime() {
var currentDate = Date.now();
var currentUTCdate = currentDate.toUTCString();
if (navigator.userAgent.indexOf("MSIE") < 0) {
currentUTCdate = currentUTCdate.replace("GMT", "UTC");
}
$("#Clock").text(Date.parseExact(currentUTCdate, "ddd, dd MMM yyyy HH:mm:ss UTC").toString("dd-MMM-yyyy hh:mm tt"));
setTimeout(UpdateUTCDateTime, (60 - currentDate.getSeconds()) * 1000);
}
所以它会给我当前的UTC日期时间。