gki*_*idd 1 lotus lotus-domino xpages
正确地在Xpage上添加了css文件,但是当我添加JS资源时,它没有被添加,我不明白为什么?这就是我写的:
<resource>
<content-type>text/javascript</content-type>
<href>addThis.js</href>
</resource>
Run Code Online (Sandbox Code Playgroud)
Tnx提前
您的内容类型错误.要通过主题添加客户端Javascript库,您需要使用application/x-javascript:
<resource>
<content-type>application/x-javascript</content-type>
<href>addThis.js</href>
</resource>
Run Code Online (Sandbox Code Playgroud)