美文网首页让前端飞
阻止浏览器自动填充账号、密码(100%有效)

阻止浏览器自动填充账号、密码(100%有效)

作者: 胡萝卜须摇头玩 | 来源:发表于2018-10-19 16:10 被阅读63次

解决办法:

在账号及密码输入框前各加一行文本及密码输入框,如下:

<input type="text" style="position:fixed;bottom:-9999px;">
<input type="text" name="emailAccount" id="emailAccount" />

<input type="password" style="position:fixed;bottom:-9999px;">
<input type="password"  name="emailPwd" id="emailPwd" />

注:一定不要加“autocomplete="xxx" ”,否则会失效。

相关文章

网友评论

本文标题:阻止浏览器自动填充账号、密码(100%有效)

本文链接:https://www.haomeiwen.com/subject/chxuzftx.html