LoginSignup
0
1

More than 3 years have passed since last update.

予測変換を非表示にする

Posted at

フォームの予測変換機能をオフにする

問題を解くアプリを作成しているときに、フォームに文字を打ち込むときに予測変換が出てしまい、答えが事前にわかってしまうケースがあったため調べた。

結果

<input>のautocomplete属性をoffにすると予測変換が消えるみたいです。
autocomplete: 'off'
予測変換のことをオートコンプリートと言うと。

form.rb
<%= text_field_tag "word#{word.id}","", {class: 'form-control',autocomplete: 'off'} %>
0
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
0
1