如何处理由于浏览器设置导致的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