我正在使用smalot/bootstrap-datetimepicker
如何设置从09:00
到20:00
的小时范围或禁用其他小时。
我发现trentrichardson/jQuery-Timepicker-Addon可以设置hourmax和hourmin, 但我怎么能在bootstrap-datetimepicker中做呢?
答案 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];
});