クレイジーに聞こえるかもしれませんが、ここで無効な日付を選択できるようにする必要があります: https://eonasdan.github.io/bootstrap-datetimepicker/
なんで?予約の可能性が低い日付に色を付け、予約の可能性が高い日付に緑色の日付を色付けする必要があるので、次のように書きます。
<script>
$(function () {
$('#start').datetimepicker({
format: 'YYYY/MM/DD',
enabledDates: [
moment("05/21/2016"),
moment("05/22/2016"),
moment("05/23/2016"),
moment("05/24/2016"),
],
});
});
</script>
<style type="text/css">
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
background: #FF9088 !!important;
border-radius: 0px !important;
color: #fff !important;
border: 1px solid #fff !important;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
background: #FF9088 !important;
border-radius: 0px !important;
border: 1px solid #fff !important;
color: #fff !important;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
background: #FF9088 !important;
border-radius: 0px !important;
border: 1px solid #fff !important;
color: #fff !important;
}
.day {
background: rgba(88, 204, 0, 0.52) !important;
border-radius: 0px !important;
border: 1px solid #fff !important;
}
</style>
ご覧のとおり、日付を緑色で有効にし、他の日付を無効にして赤色で表示しています...しかし、訪問者が日付を有効にするだけでなく、無効にする日付も選択できるようにする必要があります...
カレンダーの日付に色を付けるためだけに有効化と無効化を使用しています...
では、無効な日付も選択できるようにするにはどうすればよいですか?