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?

datalistの落とし穴

Posted at

datalistの落とし穴

テキストを入力できるセレクトボックスとして画面にdatalistを採用したことがあった。
実装後、テストしていると
選択できるはずの無い内容が選択できるようになっていた


なんじゃこりゃ。


実は入力履歴を保持できるという特性があるため、

<input type="text">

を使用したタグ内に、

<input type="text" autocomplete="off">

と、入力履歴を無効化してやらないといけないらしい。
バグフィックスの分だけ工数増えちまった。

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?