欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决input type=password在浏览器会自动填充密码的问题

程序员文章站 2022-03-21 11:49:13
...
通过添加readonly&onfocus =“this.removeAttribute('readonly');
解决了这个问题。

<input type="password" name="Password" autocomplete="off" readonly 
onfocus="this.removeAttribute('readonly');" >
相关标签: 浏览器 html