0

xhtml ページに p:commandLink があります

value 属性に value を、styleClass 属性に image を指定しました。画像に値を表示します。(画像を値でオーバーライド)

画像だけを表示するには?

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 に答える