有没有一种方法可以使用JSF为嵌入式样式表动态创建图像url?
示例:
<h:head>
<style type="text/css">
.someId { background-image:url(images/example.jpg); }
</style>
</h:head>
(嵌入式CSS不支持使用<h:graphicImage library="images" name="logo.gif" />
(。
如果我正确理解了你的问题:
在我的项目中,我使用了这种风格:
<h1
class="logo"
style="background:url( #{mainMenuNavigationBean.headerImage} ) no-repeat;">
其中mainMenuNavigationBean
是会话bean,我在其中基于某些条件设置headerImage。