我可以用<h:commandButton value="Reset" class="link" type="reset" />
代替
这个代码重置表单值吗?
<h:commandLink value="Reset" class="link" type="reset" style="margin: 20px;">
<f:ajax execute="@form" render="@form"/>
</h:commandLink>
h:commandLink
将不会像h:commandButton
与type="reset"
一样行为,因为在h:commandLink
属性中,type
定义了该超链接指定的资源的内容类型(例如text/ html, image/gif
)。
使用下面的代码:
<h:commandLink value="Reset" class="link" type="reset" style="margin: 20px;">
<f:ajax execute="@form" render="@form"/>
</h:commandLink>
将提交输入值。这不是你想要的