从服务器上,我得到了这种格式的datetime变量:6/29/2011 4:52:48 PM
它是UTC时间。我想使用JavaScript将其转换为当前用户的浏览器时间。
如何使用JavaScript或jQuery完成此操作?
从服务器上,我得到了这种格式的datetime变量:6/29/2011 4:52:48 PM
它是UTC时间。我想使用JavaScript将其转换为当前用户的浏览器时间。
如何使用JavaScript或jQuery完成此操作?
Answers:
将'UTC'附加到字符串之前,将其转换为javascript中的日期:
var date = new Date('6/29/2011 4:52:48 PM UTC');
date.toString() // "Wed Jun 29 2011 09:52:48 GMT-0700 (PDT)"
在我看来,服务器通常应始终以标准化的ISO 8601格式返回日期时间。
更多信息在这里:
在这种情况下,服务器将返回'2011-06-29T16:52:48.000Z'
并直接输入JS Date对象。
var utcDate = '2011-06-29T16:52:48.000Z'; // ISO-8601 formatted date returned from server
var localDate = new Date(utcDate);
该时间localDate
将在正确的本地时间(在我的情况下为两个小时)(DK时间)。
只要您与服务器期望的格式保持一致,您实际上就不必执行所有使事情复杂化的解析过程。
DateTime
对象,.toString("o")
并使用该对象返回ISO-8601格式的字符串,如上所示。msdn.microsoft.com/zh-CN/library/zdtaw1bw(v=vs.110).aspx在javascript中是new Date().toISOString()
。developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/…–
这是一个通用的解决方案:
function convertUTCDateToLocalDate(date) {
var newDate = new Date(date.getTime()+date.getTimezoneOffset()*60*1000);
var offset = date.getTimezoneOffset() / 60;
var hours = date.getHours();
newDate.setHours(hours - offset);
return newDate;
}
用法:
var date = convertUTCDateToLocalDate(new Date(date_string_you_received));
根据客户端本地设置显示日期:
date.toLocaleString();
将此功能放在您的脑海:
<script type="text/javascript">
function localize(t)
{
var d=new Date(t+" UTC");
document.write(d.toString());
}
</script>
然后为页面正文中的每个日期生成以下内容:
<script type="text/javascript">localize("6/29/2011 4:52:48 PM");</script>
要删除格林尼治标准时间和时区,请更改以下行:
document.write(d.toString().replace(/GMT.*/g,""));
在尝试了一些其他在此处发布但未取得良好结果的文件之后,这似乎对我有用:
convertUTCDateToLocalDate: function (date) {
return new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds()));
}
从本地日期到UTC,这是相反的:
convertLocalDatetoUTCDate: function(date){
return new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds());
}
new Date(+date + date.getTimezoneOffset() * 6e4)
。;-)
Matt的答案缺少以下事实:Date()和它需要转换的日期时间之间的夏令时可能有所不同-这是我的解决方案:
function ConvertUTCTimeToLocalTime(UTCDateString)
{
var convertdLocalTime = new Date(UTCDateString);
var hourOffset = convertdLocalTime.getTimezoneOffset() / 60;
convertdLocalTime.setHours( convertdLocalTime.getHours() + hourOffset );
return convertdLocalTime;
}
并将结果放入调试器:
UTCDateString: "2014-02-26T00:00:00"
convertdLocalTime: Wed Feb 26 2014 00:00:00 GMT-0800 (Pacific Standard Time)
//Covert datetime by GMT offset
//If toUTC is true then return UTC time other wise return local time
function convertLocalDateToUTCDate(date, toUTC) {
date = new Date(date);
//Local time converted to UTC
console.log("Time: " + date);
var localOffset = date.getTimezoneOffset() * 60000;
var localTime = date.getTime();
if (toUTC) {
date = localTime + localOffset;
} else {
date = localTime - localOffset;
}
date = new Date(date);
console.log("Converted time: " + date);
return date;
}
这是基于Adorjan Princ的答案的简化解决方案:
function convertUTCDateToLocalDate(date) {
var newDate = new Date(date);
newDate.setMinutes(date.getMinutes() - date.getTimezoneOffset());
return newDate;
}
用法:
var date = convertUTCDateToLocalDate(new Date(date_string_you_received));
对我来说,最简单的方法似乎是使用
datetime.setUTCHours(datetime.getHours());
datetime.setUTCMinutes(datetime.getMinutes());
(我以为第一行可能就够了,但是有些时区会在几小时内消失)
new Date('date string')
,然后添加了这两行,看来返回的时间完全基于服务器的UTC时间戳。进行调整以使其与用户的本地时间匹配。我确实也要担心一个小时的时区的怪异...不确定它是否在所有时间都完美保存...
使用YYYY-MM-DD hh:mm:ss
格式:
var date = new Date('2011-06-29T16:52:48+00:00');
date.toString() // "Wed Jun 29 2011 09:52:48 GMT-0700 (PDT)"
要从YYYY-MM-DD hh:mm:ss
格式转换,请确保您的日期遵循ISO 8601格式。
Year:
YYYY (eg 1997)
Year and month:
YYYY-MM (eg 1997-07)
Complete date:
YYYY-MM-DD (eg 1997-07-16)
Complete date plus hours and minutes:
YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
Complete date plus hours, minutes and seconds:
YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
Complete date plus hours, minutes, seconds and a decimal fraction of a second
YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00) where:
YYYY = four-digit year
MM = two-digit month (01=January, etc.)
DD = two-digit day of month (01 through 31)
hh = two digits of hour (00 through 23) (am/pm NOT allowed)
mm = two digits of minute (00 through 59)
ss = two digits of second (00 through 59)
s = one or more digits representing a decimal fraction of a second
TZD = time zone designator (Z or +hh:mm or -hh:mm)
重要注意事项
T
,在某些浏览器中空格无法使用+hh:mm
,使用时区字符串(例如:'UTC')在许多浏览器中均无效。+hh:mm
代表与UTC时区的偏移量。@Adorojan's
答案几乎是正确的。但是添加偏移量是不正确的,因为如果浏览器日期早于GMT,则偏移值将为负,反之亦然。以下是我附带的解决方案,对我来说效果很好:
// Input time in UTC
var inputInUtc = "6/29/2011 4:52:48";
var dateInUtc = new Date(Date.parse(inputInUtc+" UTC"));
//Print date in UTC time
document.write("Date in UTC : " + dateInUtc.toISOString()+"<br>");
var dateInLocalTz = convertUtcToLocalTz(dateInUtc);
//Print date in local time
document.write("Date in Local : " + dateInLocalTz.toISOString());
function convertUtcToLocalTz(dateInUtc) {
//Convert to local timezone
return new Date(dateInUtc.getTime() - dateInUtc.getTimezoneOffset()*60*1000);
}
我回答这个问题如果有人想要将转换后的时间显示到特定id元素并应用日期格式字符串yyyy-mm-dd的函数,则date1是字符串,而ids是该时间要显示的元素的id。
function convertUTCDateToLocalDate(date1, ids)
{
var newDate = new Date();
var ary = date1.split(" ");
var ary2 = ary[0].split("-");
var ary1 = ary[1].split(":");
var month_short = Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
newDate.setUTCHours(parseInt(ary1[0]));
newDate.setUTCMinutes(ary1[1]);
newDate.setUTCSeconds(ary1[2]);
newDate.setUTCFullYear(ary2[0]);
newDate.setUTCMonth(ary2[1]);
newDate.setUTCDate(ary2[2]);
ids = document.getElementById(ids);
ids.innerHTML = " " + newDate.getDate() + "-" + month_short[newDate.getMonth() - 1] + "-" + newDate.getFullYear() + " " + newDate.getHours() + ":" + newDate.getMinutes() + ":" + newDate.getSeconds();
}
我知道答案已经被接受,但是我到达了Google的原因,并且确实从接受的答案中得到了启发,所以我确实想在有人需要的情况下分享它。
基于@digitalbath答案,这是一个小功能,可获取UTC时间戳并在给定DOM元素中显示本地时间(最后一部分使用jQuery):
https://jsfiddle.net/moriz/6ktb4sv8/1/
<div id="eventTimestamp" class="timeStamp">
</div>
<script type="text/javascript">
// Convert UTC timestamp to local time and display in specified DOM element
function convertAndDisplayUTCtime(date,hour,minutes,elementID) {
var eventDate = new Date(''+date+' '+hour+':'+minutes+':00 UTC');
eventDate.toString();
$('#'+elementID).html(eventDate);
}
convertAndDisplayUTCtime('06/03/2015',16,32,'eventTimestamp');
</script>
我编写了一个不错的小脚本,它采用UTC时代并将其转换为客户端系统时区,并以d / m / YH:i:s(如PHP date函数)格式返回:
getTimezoneDate = function ( e ) {
function p(s) { return (s < 10) ? '0' + s : s; }
var t = new Date(0);
t.setUTCSeconds(e);
var d = p(t.getDate()),
m = p(t.getMonth()+1),
Y = p(t.getFullYear()),
H = p(t.getHours()),
i = p(t.getMinutes()),
s = p(t.getSeconds());
d = [d, m, Y].join('/') + ' ' + [H, i, s].join(':');
return d;
};
您可以使用momentjs,moment(date).format()
将始终以本地日期显示结果。
红利,您可以按任何需要的格式进行格式化。例如。
moment().format('MMMM Do YYYY, h:mm:ss a'); // September 14th 2018, 12:51:03 pm
moment().format('dddd'); // Friday
moment().format("MMM Do YY");
有关更多详细信息,请访问Moment js网站。
我创建了一个函数,将所有时区转换为本地时间。
我没有使用getTimezoneOffset(),因为它没有返回正确的偏移值
要求:
1. npm i moment-timezone
function utcToLocal(utcdateTime, tz) {
var zone = moment.tz(tz).format("Z") // Actual zone value e:g +5:30
var zoneValue = zone.replace(/[^0-9: ]/g, "") // Zone value without + - chars
var operator = zone && zone.split("") && zone.split("")[0] === "-" ? "-" : "+" // operator for addition subtraction
var localDateTime
var hours = zoneValue.split(":")[0]
var minutes = zoneValue.split(":")[1]
if (operator === "-") {
localDateTime = moment(utcdateTime).subtract(hours, "hours").subtract(minutes, "minutes").format("YYYY-MM-DD HH:mm:ss")
} else if (operator) {
localDateTime = moment(utcdateTime).add(hours, "hours").add(minutes, "minutes").format("YYYY-MM-DD HH:mm:ss")
} else {
localDateTime = "Invalid Timezone Operator"
}
return localDateTime
}
utcToLocal("2019-11-14 07:15:37", "Asia/Kolkata")
//Returns "2019-11-14 12:45:37"
就我而言,我必须找出以秒为单位的日期差。该日期是UTC日期字符串,因此我将其转换为本地日期对象。这是我所做的:
let utc1 = new Date();
let utc2 = null;
const dateForCompare = new Date(valueFromServer);
dateForCompare.setTime(dateForCompare.getTime() - dateForCompare.getTimezoneOffset() *
60000);
utc2 = dateForCompare;
const seconds = Math.floor(utc1 - utc2) / 1000;
function getUTC(str) {
var arr = str.split(/[- :]/);
var utc = new Date(arr[0], arr[1]-1, arr[2], arr[3], arr[4], arr[5]);
utc.setTime(utc.getTime() - utc.getTimezoneOffset()*60*1000)
return utc;
}
对于其他访问者-使用此功能从UTC字符串获取本地日期对象,应注意DST并可以在IE,iPhone等上使用。
我们分割字符串(由于某些浏览器不支持JS Date解析),我们与UTC有所不同,并从UTC时间中减去了它,从而得到了本地时间。由于返回的偏移量是用DST计算的(如果我写错了,请纠正我),因此它将在变量“ utc”中设置该时间。最后返回日期对象。
在Angular中,我这样使用Ben的答案:
$scope.convert = function (thedate) {
var tempstr = thedate.toString();
var newstr = tempstr.toString().replace(/GMT.*/g, "");
newstr = newstr + " UTC";
return new Date(newstr);
};
编辑:Angular 1.3.0在日期过滤器中添加了UTC支持,我还没有使用它,但是它应该更容易一些,格式如下:
{{ date_expression | date : format : timezone}}