使用 javascript 将日期字符串转换为 UTC+0530 格式
我的日期格式为 14-Feb-2011
,但我想将其转换为 Mon Feb 14 10:13:50 UTC+0530 2011
格式。我怎样才能实现这个目标?
I have a date in the format 14-Feb-2011
, but I want to convert it into the format Mon Feb 14 10:13:50 UTC+0530 2011
. How Can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 new Date(Date.UTC(年、月、日、小时、分钟、秒)),您可以从特定的 UTC 时间创建一个 Date 对象。
我尝试了这段代码,它返回了正确的日期(在印度语言环境中)
输出:
Here's an example of converting between different time zones.
输出:
它到处都写着 IST,因为 new Date() 总是将日期显示为本地时区(对我来说是 IST),但上面的日期时间实际上是 原始、UTC、IST、PST。
Using
new Date(Date.UTC(year, month, day, hour, minute, second))
you can create a Date-object from a specific UTC time.I tried this code and it returned proper date (In Indian Locale)
Output:
Here's an example of converting between different time zones.
Output:
Its writing IST every where because new Date() always show date as local timezone (which is IST for me) but above datetime are actually Original, UTC, IST, PST respectively.
这将给出输出
2011 年 2 月 14 日星期一 00:00:00 GMT-0500(东部标准时间)
this will give an output of
Mon Feb 14 2011 00:00:00 GMT-0500 (Eastern Standard Time)