autocomplete="off" 关闭自动填充功能在部分浏览器失效,即使如网易邮箱那里设置autocomplete="new-password"仍然无效,经过测试使用readonly可以解决该问题
<input type="text" name="email" autocomplete="off" readonly="readonly" onfocus="this.removeAttribute('readonly')" onblur="this.setAttribute('readonly','readonly')" />
网友评论