JavaScriptで日付入力フィールドで現在の日付を自動的に選択する方法
方法1: JavaScriptのDateオブジェクトを使用する方法<input type="date" id="myDateInput"> <script> // 現在の日付を取得 var currentDate = new Date().toISOString().split('T')[0]; // 日付入力フィールドに現在の日付を設定 document.getElementById("myDateInput").value = currentDate; </script>>>More