Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有人知道是什么控制了表单中先前表单字段条目的显示。
例如,如果在名称字段中,我输入“John”,它会出现在字段下方。这是浏览器的功能还是javascript之类的?
另外,如果是浏览器,有没有办法可以为给定的表单关闭它?
您可能正在查看自动完成功能,如果是这样autocomplete="off",请在相关字段的 HTML 中将其关闭:
autocomplete="off"
<input type="text" name="firstname" autocomplete="off" />
参考:
input
它是由浏览器制作的,如果您使用的是 HTML5,您可以为 input-element 设置一个属性以将其删除。
<input type="text" autocomplete="off" />