Chrome自动填充未设置输入密码值
<input type="password" value="" name="password">
点击页面后,密码设置为正确的值
答案 0 :(得分:2)
请检查一下:
旧解决方案:
<form autocomplete="off">
新解决方案:
<input style="display:none" type="password" name="fakepasswordremembered"/>
答案 1 :(得分:0)
试试这个:
<input type="password" autoComplete="off" id="" placeholder="Password"/>