欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何处理由于浏览器设置导致的autocomplete="off"失效的问题

程序员文章站 2022-07-13 12:54:15
...

1.因为谷歌只会自动填充第一个<input type="password">和它之前的<input>,所以可以添加以下代码:

<input style="display:none"><input type="password" style="display:none">//添加在form元素的最上边,

2.最好的解决是给autocomplete设置其他值(除on或off)

<input type="text" name="email">
<input type="password" name="password" autocomplete="new-password">

可参考*上的解决方案:
https://*.com/questions/12374442/chrome-browser-ignoring-autocomplete-off

相关标签: 自动填充