使用h:commandLink重置表单



我可以用<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:commandButtontype="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>
将提交

输入值。这不是你想要的

相关内容

  • 没有找到相关文章

最新更新