「jQuery」カレンダーDatepickerで選択可能日付の範囲を設定するサンプル

環境
jquery 3.6.0
Google Chrome 104.0.5112.81

書式
1.今日の日付を指定します
minDate: new Date()
minDateに今日の日付を指定しています。今日より前の日はクリックできません。

2.maxDateに5日を指定します
maxDate: '+5d’
maxDateに5日を指定しています。5日より先の日はクリックできません。

使用例

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1/i18n/jquery.ui.datepicker-ja.min.js"></script>
<script>
$(function() {
  /*テキスト入力欄にクリックできる日付の範囲を設定*/
  var regFrom = $("#search").datepicker({
            /*minDateに今日の日付を指定*/
      		minDate: new Date(),
            /*maxDateに5日を指定*/
                maxDate: '+5d'
    });
});
</script>
</head>
<body>
<!--テキスト入力欄 -->
<p>登録日: <input type="text" id="search" /></p>
</body>
</html>

結果

「登録日」入力欄にクリックしたら、今日「2022/08/12」より前の日はクリックできません。
「8/12」~「8/17」日付の範囲を設定することができます。他の日はクリックできません。

 

jQuery

Posted by arkgame