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.
如何删除图像中的默认输入列表:
html INPUT TEXT 删除浏览器默认下拉菜单
<input name="serch" type="text" />
这来自浏览器缓存。如果浏览器兼容,autocomplete="off"应该可以工作:
autocomplete="off"
<input type="text" name="name" autocomplete="off" />
用作autocomplete="off相关元素的属性和值input,以防止显示建议。
autocomplete="off
input