在主题中添加Javascript资源

时间:2012-02-20 10:04:10

标签: lotus lotus-domino xpages

css文件正确添加到Xpage上,但是当我添加JS资源时,它没有被添加,我不明白为什么?这就是我写的:

<resource>
        <content-type>text/javascript</content-type>
        <href>addThis.js</href>
</resource>

提前Tnx

3 个答案:

答案 0 :(得分:8)

您的内容类型错误。要通过主题添加客户端Javascript库,您需要使用application / x-javascript:

<resource>
     <content-type>application/x-javascript</content-type>
     <href>addThis.js</href>
</resource>

答案 1 :(得分:3)

如果您正在谈论CLIENT方javascript,您应该使用以下标记:

<theme extends="oneuiv2.1">
  <script target="xsp" src="/yourscript.js" clientSide="true" type="text/javascript"/>
</theme>

对于服务器端脚本使用

<theme extends="oneuiv2.1">
<script target="xsp" src="*/yourscript.jss" clientSide="false" type="text/javascript"/>
</theme>

答案 2 :(得分:1)

根据掌握Xpages,您应该使用内容类型“text / x-javascript”。你试过了吗?