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

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

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

<input ng-model="getpwd" name="password"

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

猜你喜欢

转载自www.cnblogs.com/shixy1617/p/9399472.html