admin管理员组文章数量:1340602
I am trying to format a String into a 24 hour format using moment JS at the moment I am not getting the expected output, the below explains it in more detail:
How I am coverting
var testFormat = moment("9:00","HH:mm:ss");
I was hoping this would output:
09:00:00 (24 Hour format)
But for some reason is does not convert just the date, this is outputing the following:
1471507200000
I am trying to format a String into a 24 hour format using moment JS at the moment I am not getting the expected output, the below explains it in more detail:
How I am coverting
var testFormat = moment("9:00","HH:mm:ss");
I was hoping this would output:
09:00:00 (24 Hour format)
But for some reason is does not convert just the date, this is outputing the following:
1471507200000
Share
Improve this question
asked Aug 18, 2016 at 11:16
DarrenWDarrenW
851 gold badge3 silver badges13 bronze badges
0
2 Answers
Reset to default 10You are using it wrong. You can provide a format as the second argument to moment. So in your case it would be:
var myMoment = moment("9:00","H:mm");
To get the moment
. Now you can format it the way you want:
myMoment.format("HH:mm:ss");
DEMO
Below mentioned statement will give 12 hrs format
moment("13:15:00", "h:mm:ss").format("hh:mm A");
本文标签: javascriptTurn a String to a 24 hour time formatusing momentJsStack Overflow
版权声明:本文标题:javascript - Turn a String to a 24 hour time format, using moment.Js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743642112a2514887.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论