如何禁用输入建议?

时间:2019-05-04 22:05:10

标签: html css

我正试图防止在我创建的输入框中出现建议。

<input type="text" class="form-control" name="message" id="msg" 
        placeholder="Type a message" autocomplete="false">

但是即使使用autocomplete="false",我仍然得到以下信息:

enter image description here

我不希望建议显示在输入框中。

1 个答案:

答案 0 :(得分:6)

我相信您应该尝试使用"off"而不是"false"

autocomplete="off"

在给定方案的背景下,尝试以下代码段

<input type="text" class="form-control" name="message" id="msg" 
   placeholder="Type a message" autocomplete="off">


如果输入内容用<form>括起来,则可以在表单上使用此属性,而不必使用每个<input>

  

它告诉浏览器不要以类似的形式保存用户输入的数据以供以后自动完成,尽管遵从的启发法会因浏览器而异。

Here is the reference