取消浏览器的自动填充密码的一种方式

1、添加隐藏控件,类型为password

2、真正的密码框设置autocomplete="off",并将type设置为text,然后在获取焦点的时候改变type为password

<div class="form-group">
    <input id="txtUserID" class="form-control form-control-index" placeholder="用户名" type="text" runat="server" tabindex="1" />
</div>
<div class="form-group ">
    <input type="password" style="display: none">
    <input id="txtUserPwd" class="form-control form-control-index" type="text" onfocus="this.type='password'" placeholder="密码" autocomplete="off" runat="server" tabindex="2" />
</div>

猜你喜欢

转载自blog.csdn.net/yzy85/article/details/85995558
今日推荐