1
2

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のdatalist

Posted at
<select>
  <option value="ja">日本語</option>
  <option value="en">英語</option>
</select>

DBに登録しておいた内容から選ばせたいので
セレクトタグを使い選択させる

しかし自由入力も可能にして欲しいと言われる
selectタグってそんなことできたっけ?となり調べた結果

<input list="lang"/>
<datalist id="lang">
  <option value="ja">日本語</option>
  <option value="en">英語</option>
</datalist>

datalistを見つけました
html5の機能でテキスト入力にオートコンプリート機能を付けてくれる
optionの中身はDBから取得すればいいので対応可能でした

safariでは動かないらしいのでdatalist-polyfillを導入する

1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?