Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以有条件地包含 javascript 文件和 css 文件吗?
<xbl:script src="/apps/xforms-sandbox/samples/myfile.js" />
这可以有条件地完成吗?
此时,在 Orbeon Forms 中,您不能有条件地包含<xbl:script>带有<xbl:style>. 要包含动态资源,请在 XBL 组件内部使用 HTML 元素<xhtml:script>并<xhtml:style>使用 XSTL 生成。<xbl:template>如果你可以使用静态资源,你应该:
<xbl:script>
<xbl:style>
<xhtml:script>
<xhtml:style>
<xbl:template>