防止浏览器记住密码,登录后对所有input禁止填充账户密码的方法

1.忽悠浏览器。

2.把input type=”password” 改成 input type=”text” 并在后面加上 onfocus=”this.type=’password'”

3.在文档加载完成后将密码及用户输入框设置为空

4.使用html5的属性 ()但是这种方案不兼容某些Chrome、Firefox;

你可能感兴趣的:(防止浏览器记住密码,登录后对所有input禁止填充账户密码的方法)