本文介绍了Javascript:将UTC Date()对象转换为本地时区的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个包含UTC日期的 Date()
对象,我需要将其转换为用户本地时区。有人知道我该怎么做吗:$)
I have a Date()
object that contains a UTC date, which I need converted to the users local timezone. Does anybody know how I could do this? :-)
推荐答案
我通常会创建一个新的 Date
Date.setUTC *
功能来复制日期信息。
I usually create a new Date
object and use the Date.setUTC*
functions to copy the date information.
这篇关于Javascript:将UTC Date()对象转换为本地时区的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!