禁止浏览器表单自动填充
普通文本框添加 autocomplete="off",密码输入框添加 autocomplete="new-password"。
<input type="text" autocomplete="off" name="userName"/> <input type="password" autocomplete="new-password" name="password"/>
如果是整个表单可以设置:
<form method="post" action="/form" autocomplete="off"> […] </form>