how to set am/pm format in jquery using datetimepicker

后端 未结 8 1273
孤独总比滥情好
孤独总比滥情好 2021-01-18 09:14

this is my jquery code.eventdatpicker is display date only,but occasionStartTime and occasionEndTime it display 24 hours format only how to change this format to am/pm forma

8条回答
  •  一整个雨季
    2021-01-18 09:40

    If you've only got a time field instead of a datetime field - you can set AM/PM format using

     $("#yourTimeField").timepicker({
            showPeriod: true
     });
    

提交回复
热议问题