简体   繁体   English

Chrome自动填充未设置密码值

[英]Chrome auto fill not set password value

Chrome auto fill not set the input password value Chrome自动填充未设置输入的密码值

<input type="password" value="" name="password">

After clicking on the page the password set to the right value 单击页面后,密码设置为正确的值

Please do check this: 请检查以下内容:

Old Solution : 旧解决方案

<form autocomplete="off">

New Solution : 新解决方案

<input style="display:none" type="password" name="fakepasswordremembered"/>

尝试这个 :

<input type="password" autoComplete="off" id="" placeholder="Password"/>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM