我已经为此苦苦挣扎了一段时间。我正在使用primefaces 3.5。我有一个带有图标属性的命令按钮。但是图像似乎没有显示。我不确定我是否正确放置了图片网址。我尝试了一些路径。但仍然无法正常工作。在萤火虫中,我可以看到该图标。
我的图片位于 /BelsizeWeb/WebContent/theme/primefaces-aristo/images CSS 位于 /BelsizeWeb/WebContent/theme/primefaces-aristo
主题.css
.ui-icon-excel {
background-image: url("images/toexcel.gif");
}
xhtml
<link type="text/css" rel="stylesheet"
href="#{request.contextPath}/theme/primefaces-aristo/theme.css" />
<p:commandButton type="submit"
styleClass="commandExButton_image" id="cr1001_command_toexcel"
icon="ui-icon-excel"
action="#{pc_Cr1001.doCr1001_command_toexcelAction}" ajax="false">
</p:commandButton>