最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Turn a String to a 24 hour time format, using moment.Js - Stack Overflow

programmeradmin3浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 10

You 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");
发布评论

评论列表(0)

  1. 暂无评论