我知道也许我可以使用autocomplete="off"
,但我也想学习一些新的东西,用 Jquery 做这个。
浏览器(在我的例子中是 FF)自动填写表格。所以我会重置所有字段。
我正在使用此代码,但(显然?)它不读取浏览器编译(我认为在 DOM 中不存在该预填充值)。
$(':input','.not-filling')
.not(':button, :submit, :reset, :hidden')
.val('')
.text('')
.removeAttr('checked')
.removeAttr('selected');
形式很简单
<form class="not-filling" method="post" action="new-user.php">
<input type="text" name="username" />
</form>
谢谢