0

我在 xhtml 页面中有 p:commandLink

我已将 value 赋予 value 属性并将 image 赋予 styleClass 属性。它在图像上显示价值。(用值覆盖图像)

如何在上面只显示图像?

XHTML 代码:

<p:commandLink actionListener="#{userController.createNewUser}"
               update=":userRightPaneForm" 
               styleClass="newButtonLnk"
               value="New">
</p:commandLink>

CSS 代码:

.newButtonLnk {  width: 40px; height: 17px;
                 background: url('../images/buttons/new_off.png')
                 no-repeat;
                 display: inline-block;
}
.newButtonLnk:hover{ width: 40px; height: 17px;
                     background: url('../images/buttons/new_on.png')
                     no-repeat;
}

请帮帮我。

4

1 回答 1

0

value属性设置为""

像这样 : value=""

<p:commandLink actionListener="#{userController.createNewUser}"
           update=":userRightPaneForm" 
           styleClass="newButtonLnk"
           value="">
</p:commandLink>
于 2013-01-03T08:01:59.743 回答