Bootstrap DateTimePicker设置小时(09:00 - 20:00)

时间:2014-08-04 15:59:00

标签: jquery twitter-bootstrap bootstrap-datetimepicker smalot-datetimepicker

我正在使用smalot/bootstrap-datetimepicker

如何设置从09:0020:00的小时范围或禁用其他小时。

我发现trentrichardson/jQuery-Timepicker-Addon可以设置hourmax和hourmin, 但我怎么能在bootstrap-datetimepicker中做呢?

1 个答案:

答案 0 :(得分:1)

截至目前,这是not possible使用smalot的datetimepicker。

但是,使用eonasdan's (closely related) datetimepicker可以 。使用eonasdan的插件,您将使用参数en/disabledHours

$("#myPicker").datetimepicker({
    disabledHours: [0, 1, 2, 3, 4, 5, 6, 7, 8, 21, 22, 23, 24];
});