moment.js 24小时格式


134

如何以24小时而非12小时格式显示时间?

我正在使用moment.js。

我非常确定,这些行可能与此有关。

   meridiem : function (hours, minutes, isLower) {
        if (hours > 11) {
            return isLower ? 'pm' : 'PM';
        } else {
            return isLower ? 'am' : 'AM';
        }
    },

怎么改变呢?

Answers:


377

声明您的时间HH将为您提供24小时制,并将为您hh提供12小时制。

您也可以在文档中找到它:

H, HH       24 hour time
h, or hh    12 hour time (use in conjunction with a or A)

9
Stackoverflow总是比RTFM的DRTL更短;-) thx,让我快速找到了这个答案!
Pipo

29

试试:moment({ // Options here }).format('HHmm')。那应该给您24小时制的时间。


22
moment("01:15:00 PM", "h:mm:ss A").format("HH:mm:ss")
**o/p: 13:15:00 **

它将24小时格式转换为12小时格式。


它实际上将12小时格式转换为24小时格式。它对我有用。
NomanJaved


8

您可以使用

 moment("15", "hh").format('LT') 

像这样将时间转换为12小时格式 3:00 PM


2

//Format 24H use HH:mm
let currentDate = moment().format('YYYY-MM-DD HH:mm')
console.log(currentDate)

//example of current time with defined Time zone +1
let currentDateTm = moment().utcOffset('+0100').format('YYYY-MM-DD HH:mm')
console.log(currentDateTm)
<script src="https://momentjs.com/downloads/moment.js"></script>



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.