本文介绍了将CSS或JS添加到Woodstock JSF页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在放弃之前,我试图使其运行超过2个小时.
I tried to make it work for over 2 hours before I gave up.
必须使用JSF(伍德斯托克图书馆)(即使我现在讨厌它!).
Using JSF (the Woodstock Library) is required (even though I hate it now!).
如何将CSS或JavaScript添加到JSF页面并使其起作用?
How can I add CSS or JavaScript to a JSF page and have it work?
推荐答案
在此如何操作:
<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>
这篇关于将CSS或JS添加到Woodstock JSF页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!