我想将一个按钮显示为图像。所以我把它写成:
<p:commandButton styleClass="edit_button_image" actionListener="#{userLeaveBean.editAppliedLeave}" title="Edit" process="@this"/>
以及用于获取按钮图像的 CSS:
.edit_button_image{
background: url(edit.JPG) no-repeat !important;
}
它很好地显示了图像,但还在图像上显示了一个文本“ui-button”。我怎样才能只得到图像?使用它显示很好,因为我想对整个部分执行一些操作,因为我选择并添加了 process="@this".any 解决方案?