$(function() { $.datepicker.setDefaults($.datepicker.regional["ja"]); $("#hoge03").datepicker( {//#以下はContact Form 7のフォームのIDを指定 autoSize: true,//テキストボックスの幅を自動設定 dateFormat: 'yy/mm/dd', minDate: '2024/05/02',//上記で判定した翌日・翌々日の日付を指定 maxDate: '2080/03/21',//営業終了日 beforeShowDay : function(date) {//以下、休業日設定をする日付を記載 var dateFormat = 'yy/mm/dd'; var disableDates = [ "2021/06/15","2021/06/22","2021/06/29","2021/07/06","2021/07/13", "2021/07/20","2021/07/27","2021/08/02","2021/08/03","2021/08/04", "2021/08/05","2021/08/10","2021/08/17","2021/08/24","2021/08/31", "2021/09/07","2021/09/14","2021/09/21","2021/09/28","2021/10/05", "2021/10/12","2021/10/19","2021/10/26","2021/11/02","2021/11/09", "2021/11/16","2021/11/22","2021/11/30","2021/12/07","2021/12/14", "2021/12/21","2021/12/28","2021/12/30","2021/12/31","2022/01/01", "2022/01/02","2022/01/03","2022/01/04" ]; var disableDate = $.datepicker.formatDate(dateFormat, date); return [( disableDates.indexOf(disableDate) == -1 ), "", "非営業日"]; } }); $('#hoge03').attr('readonly',true);//#以下はContact Form 7のフォームのIDを指定 });