当input type="password"时,浏览器自动填充密码框的问题。

在input 标签里加上以下参数即可。

autocomplete="off" readonly onfocus="this.removeAttribute('readonly')"

使用el-input标签时,加上以下参数即可:

auto-complete="new-password"

https://blog.csdn.net/zuorishu/article/details/81873904

你可能感兴趣的:(当input type="password"时,浏览器自动填充密码框的问题。)