「jQuery」カレンダーDatepickerに他の月を表示、選択するサンプル
環境
jquery 3.6.0 Google Chrome 104.0.5112.81
書式
1.他の月を表示します
showOtherMonths: true
showOtherMonths属性にtrueを指定しています。他の月を表示します。
2.他の月を選択できます
selectOtherMonths: true
selectOtherMonths属性にtrueを指定しています。他の月を選択できるようになります
使用例
<!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({ //他の月を表示 showOtherMonths: true, //他の月を選択可能 selectOtherMonths: true }); }); </script> </head> <body> <!--テキスト入力欄 --> <p>検索日: <input type="text" id="search" /></p> </body> </html>
結果
「検索日」欄をクリックしたら、前の月の31日や次の月の1日も選択できます。