如何禁用boostrap日期时间选择器中的特定小时数。
我的编码如下:
<input type="text" name="start" id="startDateTime" value="" />
Script As follows :
if ($('#startDateTime').length)
{
$('#startDateTime').datetimepicker({
format: "mm/dd/yyyy HH:ii P",
showMeridian: true,
autoclose: true,
todayBtn: true,
startDate : new Date()
});
}
我的要求是需要在上午9点到晚上11点选择时间,剩下的时间需要禁用或隐藏它是什么。
答案 0 :(得分:0)
据我所知,通过阅读文档(https://eonasdan.github.io/bootstrap-datetimepicker/Options/),您可以使用enabledHours
,disabledHours
或disabledTimeIntervals