Javascript 日期转换为 IS8601 格式?
我正在学习 javascript,我想弄清楚是否有一种简单的方法可以将标准格式的日期转换为 ISO8601 格式 (YYYY-MM-DDThh:mm:ssTZD)。 建议?
I am learning javascript and I am trying to figure out if there is a simple way to convert a standard formatted Date to ISO8601 format (YYYY-MM-DDThh:mm:ssTZD).
Advices?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您所说的“标准格式日期”是指 Date.parse 函数和 Date 构造函数,您可以解析日期并编写一个简单的辅助函数来返回 ISO8601 日期,使用 Date对象作为输入:
If you mean by "standard formatted date" a date string in the IETF standard format (i.e.: 'Thu, 15 Oct 2009 12:30:00 GMT') that is acceptable by the Date.parse function and by the Date constructor, you can parse the date and write a simple helper function to return an ISO8601 date, using a Date object as input:
我使用 date.js 来处理我所有的非-人类的约会需求。
I use date.js for all my non-human dating needs.
从日期到 ISO8061:
从 ISO8061 到日期:
From Date to ISO8061:
From ISO8061 to Date: