0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

pattern属性

Posted at

HTMLのpattern属性は、フォームのinputタグ内で使用され、ユーザーが入力できる値の形式を正規表現を使用して指定します。

ユーザー名が5〜12文字のアルファベット小文字であることを要求する場合:

<input type="text" pattern="[a-z]{5,12}" title="5 to 12 lowercase letters">

電話番号の形式を要求する場合:

<input type="tel" pattern="(\+?\d[- .]*){7,13}" title="A valid phone number">

title属性は、パターンに一致しない値が入力されたときに表示されるメッセージを指定します。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?