0

我想用div替换我页面上的所有类型的按钮,如下所示:

<div class="button">
    <div class="button_left"></div>
    <div class="button_center">save</div>
    <div class="button_right"></div>
</div>

我将组件替换到h:commandLink上,它可以与大多数组件一起使用,除了这样的组件:

<h:form>
    <h:commandButton value="do it" action="#{myBean.myFirstAction()}" />
    <h:commandButton value="do that" action="#{myBean.mySecondAction()}" />
</h:form>

如何处理?

[编辑]:a4j:commandButton是一个运行良好的组件示例。这些组件之间的区别在于h:commandButton生成input type="submit",其余生成input type="button"

4

0 回答 0