清除input框对浏览器保存的用户名和密码自动填充问题

清除input框对浏览器保存的用户名和密码自动填充问题:

type类型写如下写法,聚焦的时候type类型为“password”

   type="text"  type="password" autocomplete="off"  onfocus="this.type='password'"  required/ >

最有效的方法:autocomplete="off"  或者  autocomplete="new-password"  或者  autocomplete="false" 

你可能感兴趣的:(清除input框对浏览器保存的用户名和密码自动填充问题)