首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

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

2024-12-20 来源:华拓网

解决办法:

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

<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" ”,否则会失效。

显示全文