サンプルコード
<input type="text" id="datepicker">
$('#datepicker').datepicker();
オプションを追加してみる。
$('#datepicker').datepicker({ dateFormat: 'yy-mm-dd', //形式 numberOfMonths: 3, //3ヶ月分のカレンダーを表示 minDate: -2, //2日前から maxDate: '+1M', //1ヶ月先まで });
参考サイト
Datepicker | jQuery UI
https://jqueryui.com/datepicker/