在我们使用表单组件中 <input type='password'>
的 时候,浏览器会询问,是否记住密码。
当选择是的时候,下次进入页面,浏览器会自动帮你填入账号和密码。而有些场景下,我们不希望浏览器帮我们自动填入,也不希望浏览器提示记住密码,这时怎么办呢?
可以采用如下方案:
1、将input
的autocomplete
设置为off
2、将input type
设置成text
,非password
的type
浏览器是不会提示记录的
3、给input
绑定一个input
事件,当input
获得焦点时,修改input
的type
为password
具体代码如下,
<input type="text" onfocus="this.type='password'" autocomplete="off"></input>
这样就可以手动的操控用户是否能够记住密码和密码是否能够自动填入了。
网友评论