这是我使用Java Server Faces制作的registration.xhtml页面。我要做的是重置输入面板。要做到这一点,我已经简单地标记了一个按钮重置,并把页面地址放在动作字段,以便页面重新加载,以便该字段被清除。我想知道是否有更正确的方法来做到这一点……谢谢。(请不要侮辱我的无知,我完全是个新手)
<h:form>
<h:commandButton value="Register" action="someotherpage.xhtml"/>
<h:commandButton value="RESET" action="registration.xhtml"/>
</h:form>
</h:panelGrid>
</h:body>
</html>
如果您不需要在后面执行任何特殊代码,您可以使用以下按钮清除表单:
<h:commandButton type="reset" value="RESET" />