gpt4 book ai didi

Javascript日期转换毫秒到月、日、年

转载 作者:行者123 更新时间:2023-12-01 15:52:25 25 4
gpt4 key购买 nike

我正在尝试将毫秒转换为如下所示的日期:Oct 04, 2013 .我将毫秒转换为日期对象:

var d1 = new Date(milliseconds);

然后输出如下内容:
Fri Oct 04 2013 13:59:31 GMT-0400 (Eastern Daylight Time)

如果我使用 getMonth() , getDate() , 和 getFullYear()输出变成 9 4 2013
如何获得月份的全名(October)或缩写为三个字符(Oct)?

最佳答案

请看Moment.js .它提供了您可能需要的所有日期转换。

使用 Moment.js,你可以这样做:

moment(milliseconds).format('MMM DD, YYYY');

这是用于矩对象的完整格式表: http://momentjs.com/docs/#/displaying/format/

关于Javascript日期转换毫秒到月、日、年,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22869938/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com