Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个与Search.jspaform:form连接的视图ModelAttribute。我想在我的视图中有一个“重置”按钮,它将重置搜索表单。
Search.jsp
form:form
ModelAttribute
我目前正在使用一个简单的链接来重新加载页面,但这会向服务器发送一个新请求。有没有一种方法可以在 JSTL 中做到这一点,而无需访问服务器,即客户端?
重置按钮不起作用,因为值绑定到@ModelAttribute(除非页面已重新加载)
@ModelAttribute
不,JSTL 是服务器端。你需要用javascript来做。
jQuery很好。就像是
$('input[type="text"]').val('');