以Chrome为例,当浏览器遇到type="text"与type="password"的<input/>标签紧邻时,会触发浏览器自动填充行为。默认为黄色背景。firefox和360浏览器的处理方式是:只要检测到页面里有满足填充机制的,不管是不是display:none 的,只要检测到就直接往里填充。
企业微信截图_15604981004513.png
input标签的autocomplete属性设置为off,这个在其他浏览器可以生效,但是google不生效
解决方法:修改readonly属性
<input type="password" readonly onfocus="this.removeAttribute('readonly');"/>
网友评论