在 xhtml 中包含可选的 css 文件?
我有一个 xhtml 页面,其中包含一些 css 文件,例如:
<link
href="resources/css/graCommon.css"
rel="stylesheet"
type="text/css" />
<link
href="resources/css/txMart.css"
rel="stylesheet"
type="text/css"/>
我确实需要根据某些条件(例如,使用 bean 属性等)包含第二个 CSS 文件。所以我需要某种 jsf/icefaces 标签,具有诸如 render 或visible 之类的属性...
您知道类似的事情吗?
谢谢
I have an xhtml page where I do include some css files like:
<link
href="resources/css/graCommon.css"
rel="stylesheet"
type="text/css" />
<link
href="resources/css/txMart.css"
rel="stylesheet"
type="text/css"/>
I do need to include the second CSS file based on some conditions (for instance, using a bean property etc). So I need some sort of jsf/icefaces tag having an attribute like render or visible...
Are you aware of something like that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下应该适用于构建时间
将根据您的表达式将您的标签包含在 Facelet 中,您将需要包含“c”命名空间
或
参见 https://rogerkeays.com/jsf-c-foreach-vs-ui-repeat 了解每种方法的差异
The following should work for build time
Will include your tag in the facelet depending on your expression, you will need to include the "c" namespace
or
See https://rogerkeays.com/jsf-c-foreach-vs-ui-repeat for the differences in each approach