我有一个XWiki页面,我想在其中包含一个jsTree对象。 jsTree宏被加载到XWiki中,可以在页面上使用。
我有一些节点,如:
* root 1
* root 2
** subnode text 1
** subnode text 2
在此之前,它工作正常,并且jsTree显示正确的视图。
我希望在子节点上有更多链接,如:
** <a href="link1">subnode</a> <a href="">text 1</a>
使用维基代码:
** {{box}}[[subnode>>TestPageFirst]] [[text>>TestPageSecond]]{{/box}}
我还使用onClick事件测试了span标记,但jsTree也删除了它。
** {{html}}<span onClick="location.href='[[TestPageFirst]]';">Subnode</span> <span onClick="location.href='[[TestPageSecond]]';">text 1</span>{{/html}}
我的问题是jsTree脚本替换了我的文本中的链接,并使用&#39;#&#39;而不是我的。 我怎样才能在节点上创建更多链接?