将 CSS 或 JS 添加到 Woodstock JSF 页面

发布于 2024-07-25 13:38:35 字数 128 浏览 7 评论 0原文

我尝试了2个多小时才放弃。

需要使用 JSF(伍德斯托克图书馆)(尽管我现在讨厌它!)。

如何将 CSS 或 JavaScript 添加到 JSF 页面并使其正常工作?

I tried to make it work for over 2 hours before I gave up.

Using JSF (the Woodstock Library) is required (even though I hate it now!).

How can I add CSS or JavaScript to a JSF page and have it work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

倦话 2024-08-01 13:38:35

您可以使用常见的方式:

You can use the usual suspects: <script> and <style>. Depending on your JSF version, you may need to wrap them in a <f:verbatim> tag.

人间☆小暴躁 2024-08-01 13:38:35

我是这样做的:

<f:view>
<html>
    <head>
        <link rel="stylesheet" href="./style.css" />
    </head>
    <body>
        <h:outputText value="Test style" style="background-color: red;" />
        <h:outputText value="Test style class" styleClass="testClass" />
    </body>
</html>
</f:view>

Heres how I do it:

<f:view>
<html>
    <head>
        <link rel="stylesheet" href="./style.css" />
    </head>
    <body>
        <h:outputText value="Test style" style="background-color: red;" />
        <h:outputText value="Test style class" styleClass="testClass" />
    </body>
</html>
</f:view>
没企图 2024-08-01 13:38:35

只需使用:

   <h:head>
    <h:outputStylesheet library="css" name="css/style.css"  />
   </h:head>

对于 JS 使用此标签:

 <h:outputScript> 

simply use :

   <h:head>
    <h:outputStylesheet library="css" name="css/style.css"  />
   </h:head>

for JS uses this tag :

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