<link rel="stylesheet" href="https://code.jquery.com/ui/1.14.1/themes/base/jquery-ui.css">
<span>開始日:</span><input type='text' class='datepicker js-startDate'><br>
<span>終了日:</span><input type='text' class='datepicker js-endDate'>
// 現在日付
const today = dayjs().format('YYYY/MM/DD');
// 現在日付から1年後の日付
const maxDate = dayjs().add(1, 'year').format('YYYY/MM/DD');
// 共通設定
$.datepicker.setDefaults({
minDate: today, // 最小選択可能日(現在日付以降)
maxDate: maxDate // 最大選択可能日(1年後まで)
});
// 開始日の入力欄
const $startDate = $('.js-startDate');
// 終了日の入力欄
const $endDate = $('.js-endDate');
// 開始日のカレンダー
$startDate.datepicker({
/* ---- 追加 ---- */
onSelect: function (selectedDate) {
// 終了日の最小値として開始日の日付を設定
$endDate.datepicker('option', 'minDate', selectedDate);
}
/* ---- ここまで追加 ---- */
});
// 終了日のカレンダー
$endDate.datepicker();
This Pen doesn't use any external CSS resources.