清除输入值
数据来自 Servlet 到 JSP 页面中的 HTML 输入字段。当我按时,数据没有被清除。我该如何解决这个问题?
Data comes from a Servlet to HTML input field in a JSP page. When I press <input type="reset">
, the data is not cleared. How can I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTML 重置按钮不会清除表单中的字段;他们将字段重置回其初始值(请参阅示例)。
如果你想真正清除数据,你需要编写一个特定的服务器端控制器来做到这一点,或者使用 JavaScript。
HTML reset buttons do not clear the fields in the form; they reset the fields back to their initial values (see example).
If you want to actually clear the data, you'll need to write a specific server-side controller to do that, or use javascript.