HTML5 日付ピッカーがあります。
日付ピッカーのテキスト ボックスをクリックすると開きます。
藤堂:
- イベントをアイコンに変更する必要がありますが、これを実現する方法がわかりません。
カレンダー アイコンをクリックしたときに日付ピッカーを開く必要があります。
私のdatepickerのHTMLコードは次のとおりです。
<img src="date.png" alt="Date Picker" id="datepickericon" />
<input name="calendarselect{ContactID}" class="timeselect" type="date" id="calendar">
<script>
document.getElementById("datepickericon").onclick = function(e){
console.log('inside click');
document.getElementById("calendar").style.visibility="visible";
// document.getElementById("calendar").focus();
// You could write code to toggle this
}
アイコンをクリックすると、次の画像のような開いているカレンダービューを取得する必要があります