赞
踩
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">
可参考stackoverflow上的解决方案:
https://stackoverflow.com/questions/12374442/chrome-browser-ignoring-autocomplete-off
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。