我有这个日期时间字符串
"2017-05-12T22:35:58.873912"
我希望它是
"22:35:58"
所以预期的格式应该是HH:mm:ss,我该怎么做?提前谢谢。
答案 0 :(得分:0)
首先,创建一个存储此变量的变量。
var currentTime = new Date();
然后,您将要使用.getHours,.getMinutes和.getSeconds方法获取其中的每一个,然后将其显示在字符串中。
console.log("The current time is " +
currentTime.getHours() + ":" +
currentTime.getMinutes() + ":" +
currentTime.getSeconds()
);
请注意,这将显示军事时间的时间,以防您是超出该时间规范的人。