input type="date"を生成してクリックするとカレンダーが出ます
カレンダーの枠の外をクリックするとカレンダーが閉じる仕様のようです
枠外をクリックした場合のイベント検出するにはどうしたらいいでしょうか
Windows Firefox
input=document.createElement("input"); input.type="date"; input.style.width="100px"; input.style.height="100px"; input.addEventListener('canncel', function() { alert("canncel"); }); document.body.appendChild(input);
回答1件
あなたの回答
tips
プレビュー