テキストフィールドにカレンダーから入力をしたくて下記ソースコードを実装しました。
下記だと直接入力で全角文字「2020/08/01」や「ああああ」などの文字列、「2020/09/31」などの存在しない日付を入力しても適切な日付に変換してくれます。
html
1<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> 2<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/js/bootstrap-datepicker.min.js"></script> 3<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/locales/bootstrap-datepicker.ja.min.js"></script> 4<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> 5<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script> 6<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> 7<script src="https://rawgit.com/jquery/jquery-ui/master/ui/i18n/datepicker-ja.js"></script> 8 9<input type="text" name="from_date" value="" class="datepicker ymd" id="datepicker1"> 10 11<script> 12 jQuery(document).ready(function($) { 13 $('.datepicker').datepicker({ 14 dateFormat: "yy-mm-dd", 15 language:'ja', 16 autoclose: true, 17 }); 18 }); 19</script> 20
そして上記ソースをもとにカレンダーの土日祝日に色付けを行えるように下記のように修正したのですが、上記で行えていた直接入力での不正な値の日付への自動変換が消えてしまったのですが、どうして消えたのかわかりません。よろしくお願いします。
html
1 2<input type="text" name="from_date" value="" class="datepicker ymd" id="datepicker1"> 3 4<style> 5 .ui-datepicker-calendar .day-sunday > a, 6 .ui-datepicker-calendar .day-holiday > a { 7 background: #ffc0c0; 8 } 9 .ui-datepicker-calendar .day-saturday > a { 10 background: #c0d0ff; 11 } 12</style> 13 14<script> 15jQuery(document).ready(function ($) { 16 $.get("https://holidays-jp.github.io/api/v1/date.json", function(holidaysData) { 17 $('.datepicker').datepicker({ 18 dateFormat: "yy-mm-dd", 19 language:'ja', 20 autoclose: true, 21 beforeShowDay: function(date) { 22 if (date.getDay() == 0) { 23 return [true, 'day-sunday', null]; 24 } else if (date.getDay() == 6) { 25 return [true, 'day-saturday', null]; 26 } 27 let holidays = Object.keys(holidaysData); 28 for (let i = 0; i < holidays.length; i++) { 29 let holiday = new Date(Date.parse(holidays[i])); 30 if (holiday.getYear() == date.getYear() && 31 holiday.getMonth() == date.getMonth() && 32 holiday.getDate() == date.getDate()) { 33 return [true, 'day-holiday', null]; 34 } 35 } 36 return [true, 'day-weekday', null]; 37 } 38 }); 39 }); 40}); 41</script>
あなたの回答
tips
プレビュー