【问题标题】:how to disable autosuggestion in input text如何在输入文本中禁用自动建议
【发布时间】:2019-06-06 04:28:04
【问题描述】:

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

这是 HTML 代码:

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

【问题讨论】:

  • 它对我有用
  • 检查您的文本框并确认自动完成属性已添加到该控件中?
  • 控件中有自动完成属性,但我仍然得到建议

标签: angular


【解决方案1】:

autocomplete 会解决你的问题

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

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

【讨论】:

  • 我在输入中添加了 autocomplete="off" 但效果很好
猜你喜欢
  • 2015-12-23
  • 2022-01-25
  • 2019-04-24
  • 2015-10-19
  • 2017-11-14
  • 1970-01-01
  • 1970-01-01
  • 2016-06-01
  • 1970-01-01
相关资源
最近更新 更多