我在xhtml页面中有p:commandLink
我已经将值赋予value属性,并将图像赋予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;
}
请帮我在这里。
最佳答案
将value
属性设置为""
像这样:value=""
<p:commandLink actionListener="#{userController.createNewUser}"
update=":userRightPaneForm"
styleClass="newButtonLnk"
value="">
</p:commandLink>
关于html - 使用P:commandLink值属性的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14134085/