火狐浏览器刷新后表单不重置 (自动填充)

火狐浏览器中的 autocompletion

火狐浏览器提供了表单自动填充的功能,当页面被刷新后会根据表单的历史数据自动填写表单的value值。

关闭自动填写表单

autocomplete="off"
<form method="post" action="/form" autocomplete="off">
[…]
</form>
<form method="post" action="/form">
  […]
  <div>
    <label for="cc">Credit card:</label>
    <input type="text" id="cc" name="cc" autocomplete="off">
  </div>
</form>

登录表单 禁止记住密码

autocomplete="new-password"

更多内容查看:https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion

原文地址:https://www.cnblogs.com/dch0/p/11698570.html