<form id="form2" action="go.php" method="post">
<input type="text" name="user" value="" />
<input type="password" name="pass" value="" />
</form>
我在输入中输入了一些值,然后 - 重新加载页面
重新加载后输入为空,因为它们的起始value=""
但它们仍然被填满
即使在Firefox中F5
之后
此外 - 在前后导航后。
如何在重新加载页面后清除输入的内容?
答案 0 :(得分:1)
浏览器会自动使用数据填写表单字段,关闭此功能会将autocomplete="off"
属性添加到您的表单
答案 1 :(得分:1)
这很可能是一个浏览器功能。大多数现代浏览器都会保存您的表单或登录信息。有关Firefox表单缓存的信息,请访问http://support.mozilla.org/en-US/kb/control-firefox-automatically-fills-in-forms。