解决input type=password在浏览器会自动填充密码的问题
程序员文章站
2022-03-21 11:45:01
...
通过添加readonly&onfocus =“this.removeAttribute('readonly'); 解决了这个问题。 <input type="password" name="Password" autocomplete="off" readonly onfocus="this.removeAttribute('readonly');" >