本文介绍了JavaScript从时间戳获取日期和时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将此字段作为网络回复的一部分:
I have this field as part of a web response:
datetime_local: "2015-02-16T19:00:00"
我可以提取日期和时间吗?例如,我想显示
Can I extract the date and time? For instance I would like to display
February 16th at 7pm
这可能吗?
推荐答案
你可以使用进行格式化:
You can using momentjs.com for formatting:
moment(Date.parse("2015-02-16T19:00:00")).format("MMMM Do [at] hhA");
// February 16th at 10PM
这篇关于JavaScript从时间戳获取日期和时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!