在 xhtml 中包含可选的 css 文件?

发布于 2024-11-28 23:48:04 字数 382 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眉目亦如画i 2024-12-05 23:48:04

以下应该适用于构建时间

<c:if test="#{yourExpression}">
    <link
    href="resources/css/txMart.css"
    rel="stylesheet"
    type="text/css"/>
</c:if>

将根据您的表达式将您的标签包含在 Facelet 中,您将需要包含“c”命名空间

<ui:fragment rendered="#{yourExpression}">
    <link
    href="resources/css/txMart.css"
    rel="stylesheet"
    type="text/css"/>
</ui:fragment>

参见 https://rogerkeays.com/jsf-c-foreach-vs-ui-repeat 了解每种方法的差异

The following should work for build time

<c:if test="#{yourExpression}">
    <link
    href="resources/css/txMart.css"
    rel="stylesheet"
    type="text/css"/>
</c:if>

Will include your tag in the facelet depending on your expression, you will need to include the "c" namespace

or

<ui:fragment rendered="#{yourExpression}">
    <link
    href="resources/css/txMart.css"
    rel="stylesheet"
    type="text/css"/>
</ui:fragment>

See https://rogerkeays.com/jsf-c-foreach-vs-ui-repeat for the differences in each approach

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文