如何在输入文本中禁用自动提示

时间:2019-01-11 09:06:34

标签: angular

当我在输入框中输入内容时,我的Chrome浏览器会根据之前在此输入框中输入的内容自动提供建议。如何禁用浏览器建议?

enter image description here

这是HTML代码:

<input type="text" class="form-control" name="firstName" formControlName="addUserFirstName" tabindex="2" autocomplete="off" />

1 个答案:

答案 0 :(得分:0)

autocomplete将解决您的问题

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

了解更多信息,check here,并检查这些MDN WebDocs