JavaScript 日期:toGMTString,也是 ISO 8601 格式?

发布于 2024-12-01 10:58:11 字数 54 浏览 2 评论 0原文

有没有一种简单的方法可以将日期对象转换为 GMT 时间,同时也以 ISO 8601 格式显示?

Is there an easy way to convert a date object to GMT time, but also display in ISO 8601 format?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

起风了 2024-12-08 10:58:11

是否有一种简单的方法将日期对象转换为 GMT 时间

是的:

var d = new Date();
d.toGMTString()

还能以 ISO 8601 格式显示?

函数采用在此处形成(那里还有一个 ISO 8601 解析器)

function ISODateString(d) {
    function pad(n) { return n<10 ? '0'+n : n }
    return      d.getUTCFullYear()
    + '-' + pad(d.getUTCMonth()+1)
    + '-' + pad(d.getUTCDate())
    + 'T' + pad(d.getUTCHours())
    + ':' + pad(d.getUTCMinutes())
    + ':' + pad(d.getUTCSeconds())
    + 'Z'
}

Is there an easy way to convert a date object to GMT time

Yes:

var d = new Date();
d.toGMTString()

but also display in ISO 8601 format?

Function taken form here (they also have an ISO 8601 parser there)

function ISODateString(d) {
    function pad(n) { return n<10 ? '0'+n : n }
    return      d.getUTCFullYear()
    + '-' + pad(d.getUTCMonth()+1)
    + '-' + pad(d.getUTCDate())
    + 'T' + pad(d.getUTCHours())
    + ':' + pad(d.getUTCMinutes())
    + ':' + pad(d.getUTCSeconds())
    + 'Z'
}
又爬满兰若 2024-12-08 10:58:11

我遇到的最佳解决方案是使用 Moment.js javascript库并使用以下代码:

获取包含时区信息和毫秒的当前 ISO 时间

now = moment().format("YYYY-MM-DDTHH:mm:ss.SSSZZ")
// "2013-03-08T20:11:11.234+0100"

now = moment().utc().format("YYYY-MM-DDTHH:mm:ss") + "Z"
// "2013-03-08T19:11:11Z" <- better use the native .toISOString() 

获取包含时区信息但不包含毫秒的本机 JavaScript Date 对象的 ISO 时间

var current_time = Date.now();
moment(current_time).format("YYYY-MM-DDTHH:mm:ssZZ")

The best solution I've come across is to use the Moment.js javascript library and use the following code:

To get the current ISO time with timezone information and milliseconds

now = moment().format("YYYY-MM-DDTHH:mm:ss.SSSZZ")
// "2013-03-08T20:11:11.234+0100"

now = moment().utc().format("YYYY-MM-DDTHH:mm:ss") + "Z"
// "2013-03-08T19:11:11Z" <- better use the native .toISOString() 

To get the ISO time of a native JavaScript Date object with timezone information but without milliseconds

var current_time = Date.now();
moment(current_time).format("YYYY-MM-DDTHH:mm:ssZZ")
陌上芳菲 2024-12-08 10:58:11

这是 MDN date.toISOString() 页面,其中还包括跨浏览器兼容性代码。两种方法都可以从日期实例创建 ISO 8601 字符串:

MDN date.toISOString() 上的页面

Here is the MDN date.toISOString() page which also includes cross-browser compatibility code. Both ways create an ISO 8601 string from a date instance:

MDN Page on date.toISOString()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文