我有一个MainPage.xhtml
,其中包括许多其他xhtml,例如:
<ui:include src="/pages/includes/included1.xhtml"
id="included1ID"/>
<ui:include src="/pages/includes/included2.xhtml"
id="included2ID"/>
...等等。
背后有一些逻辑,其中包含的页面将被加载,可以正常工作。
我想在包含的页面中编写一些Javascript,该页面随页面加载立即运行(例如,在included1.xthml
中)。
我尝试在<ui:composition>
标签之后添加此部分:
<h:head>
<h:outputScript>
.
.
some JS
.
.
</h:outputScript>
</h:head>
如果我在“不包含”页面中使用它,效果很好,但不适用于包含的页面。 有什么办法可以将我的JS添加到这些页面中?