简体   繁体   中英

jQuery Date Picker with the TimePicker addon hours slider

I'm using Trent Richardson's timepicker add-on for JQ DatePicker. http://trentrichardson.com/examples/timepicker/

Is there a way to have the hours slider display a 12 hour clock and AM or PM?

This is the init I'm using:

$('#date_xmas_eve_open').datetimepicker({
    pickerTimeFormat: 'H:mm TT', 
    onClose: UpdateXmasEveOpen
});

Check out this resource (very useful for JS times\\dates and common formats): http://blog.stevenlevithan.com/archives/date-time-format

I believe the format you want is like this:

$('#date_xmas_eve_open').datetimepicker({
    pickerTimeFormat: 'h:MM TT', 
    onClose: UpdateXmasEveOpen
});

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM