Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
時間を選択するときのユーザー入力を制限しようとしていますinput=time。入力から小さなクリアボタンを無効にすることは可能ですか?
input=time
required属性を追加するだけです:
required
<input type="date" required>
Chromeでテストしましたが、問題なく動作しています。