1
1

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 5 years have passed since last update.

HTML5 の step 属性を使いつつも強制はさせない

Posted at

HTML5 のフォームの新機能、 type="number" の step 属性はなかなか便利ですが、入力補助のみで強制はさせたくないという場合もあります。

そんなときは、novalidate 属性をセットすればとりあえずごまかすことは可能です。他の入力値チェックもすべて無効になりますが…。

<form novalidate="novalidate">
  <input name="number" type="text" type="number" step="100" />
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?