gpt4 book ai didi

html - 输入字段在页面刷新后保留其值,如何防止这种情况发生?

转载 作者:搜寻专家 更新时间:2023-10-31 08:03:37 25 4
gpt4 key购买 nike

<table id="post">
<tr>
<td style="font-size: 20px;">Post Your comment</td>
</tr>
<tr>
<td>Name:</td>
<td><input type="text" id="username" name="username"></td>
</tr>
<tr><form id="postform" action="" method="post" name="form">
<td>Type your message here:</td>
<td><textarea name="text" id="text" rows="5" cols="40"></textarea></td>
<tr>
<td><input type="hidden" id="pageid" name="pageid" value="20"></td>
</tr>
<tr>
<td><input id="submit" type="submit" value="Post Comment" name="submit" style="width:auto;"/></td>
</tr>
</form>
</tr>
</table>

刷新后页面在文本框和文本区域中保留值。任何人都可以建议我克服它的方法吗?

最佳答案

这些值只是由客户端(网络浏览器)根据客户端历史记录自动填充的。您需要将 autocomplete="off" 添加到您想要关闭它的表单或个别输入字段。

<form autocomplete="off">
...
</form>

<form>
<input autocomplete="off" />
<input />
<input autocomplete="off" />
...
</form>

不需要可能不适用于所有环境的讨厌的 JS hack。

另见:


与具体问题无关,您的 HTML 结构远非有效。我建议通过 http://validator.w3.org 传递您的页面并相应地修复错误/警告。

关于html - 输入字段在页面刷新后保留其值,如何防止这种情况发生?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5496301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com