首页 > 其他 > 详细

input密码自动填充

时间:2018-04-26 10:22:55      阅读:158      评论:0      收藏:0      [点我收藏+]
  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密码自动填充

原文:https://www.cnblogs.com/htmlli/p/8949651.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!