html – “AutoComplete = Off”在Google Chrome浏览器上无效

前端之家收集整理的这篇文章主要介绍了html – “AutoComplete = Off”在Google Chrome浏览器上无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Chrome Browser Ignoring AutoComplete=Off34
我知道Stackoverflow有一个类似的问题,但是没有一个解决方案为我工作.
<form autocomplete="off" id="search_form" method="post" action="">
    <input autocomplete="off" type="text" />
</form>

如您所见,我在表单和输入字段上将autocomplete = off,但Google Chrome仍然显示自动填充列表.这在其他浏览器(如Firefox和Safari)中不会发生.

除了在表单标签上放置autocomplete = off之外的任何其他解决方案?

解决方法

这可能是Google Chrome上的错误,您无法通过创建隐藏的输入来作弊.自动完成功能获取第一个输入文本以填充数据.
<form autocomplete="off" id="search_form" method="post" action="">
    <input type="text" style="display:none" />
    <input autocomplete="off" type="text" />
</form>
原文链接:https://www.f2er.com/html/229658.html

猜你在找的HTML相关文章