How to turn off html input form field suggestions?

前端 未结 8 1342
难免孤独
难免孤独 2021-01-31 07:20

By suggestions I mean the drop down menu appear when you start typing, and it\'s suggestions are based on what you\'ve typed before:

for example when I type \'a

相关标签:
8条回答
  • 2021-01-31 07:40

    I had similar issue but I eventually end up doing

    <input id="inp1" autocomplete="off" maxlength="1" /> i.e., autocomplete = 'off' and suggestions will be disappeared.

    0 讨论(0)
  • 2021-01-31 07:44

    I ended up changing the input field to

    <textarea style="resize:none;"></textarea>
    

    You'll never get autocomplete for textareas.

    0 讨论(0)
提交回复
热议问题