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 type="url" id="inputWebsite" name="url">
ユーザーが入力する値にhttps://のような安全な URL が含まれていることを確認する必要があり ます。
これを使用してみることができます:
<input type="url" name="website" id="inputWebsite" required pattern="https://.+">