DateTimePicker time picker in 24 hour but displaying in 12hr?

前端 未结 13 1575
孤独总比滥情好
孤独总比滥情好 2021-02-02 09:17

I\'m using the bootstrap ready date time picker from http://eonasdan.github.io/bootstrap-datetimepicker/ and it\'s working nicely but for one issue. I have a picker setup just f

13条回答
  •  甜味超标
    2021-02-02 10:03

    Because the picker script is using moment.js to parse the format string, you can read the docs there for proper format strings.

    But for 24Hr time, use HH instead of hh in the format.

    $(function () {
        $('#startTime, #endTime').datetimepicker({
            format: 'HH:mm',
            pickDate: false,
            pickSeconds: false,
            pick12HourFormat: false            
        });
    });
    

提交回复
热议问题