input密码自动填充

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input密码自动填充相关的知识,希望对你有一定的参考价值。

  1. 自动填充样式修改
input: -webkit - autofill,
input: -webkit - autofill: hover,
input: -webkit - autofill: focus,
input: -webkit - autofill: active {
-webkit - transition - delay: 99999s;
-webkit - transition: color 99999s ease - out, background - color 99999s ease - out;
}
 
  1. 阻止自动填充
‘ <!--[if IE lte 9]>‘,
‘ <input type="password" class="form-control" autocomplete="off" name="password" placeholder="由6-16位由字母、数字、特殊字符组成" value="<%=password%>">‘,
‘ <![endif]-->‘,
‘ <input type="password" style="display:none"><input type="password" class="form-control" autocomplete="off" name="password" placeholder="由6-16位由字母、数字、特殊字符组成" value="<%=password%>">‘,
‘ </div>‘,
// 火狐
<input type="password" style="display:none" />
// chrome
<input type="password" class="form-control" name="password" required="required" autocomplete="new-password" data-input="clear" placeholder="请输入" runat="server" maxlength="20"
/>
<input type="password" style="display:none" />
 

以上是关于input密码自动填充的主要内容,如果未能解决你的问题,请参考以下文章

解决输入框自动填充账号密码问题

解决Google浏览器保存密码自动填充

浏览器保存密码后自动填充问题

input标签自动填充问题

解决谷歌input自动填充问题

解决谷歌input自动填充问题