JSTree生成在Struts2的JSP页面中不可用的链接

时间:2010-08-30 23:32:47

标签: java jquery jsp struts2 jstree

我在JSP页面(Struts2 webapp的一部分)中使用JSTree生成了一个树,如下所示:

<div class="panel">
<div id="demo1" class="demo">
<ul>
  <li id="node"><a href="#"><s:property value="product"/></a>
  <ul>

  <li id="node">
    <a href="#">Dependents</a>
    <ul>
      <s:iterator value="dependentsList" id="dependent">
      <li id="node">
          <a href="#">
          <s:property value="productName"/></a>
          <ul>
            <li> 
                <a href="#">
                Version Number: <s:property value="version" />
                </a>
            </li>
            <s:if test="documentationLink != ''">
            <li> 
                    <a href="<s:property value="documentationLink" />">
                    Link to Product Documentation 
                    </a>
            </li>
            </s:if>
        </ul>
      </li>
      </s:iterator>
    </ul>
  </li>
  </ul>
  </li>
</ul>
</div>
<script type="text/javascript" >
$(function () {
    $("#demo1").jstree(
    { 
        "core" :
        {
            "initially_open" : [ "#node" ]
        },
        "themes" :
        {
            "theme" : "default",
            "icons" : false
        },
        "plugins" : [ "themes", "html_data", "ui"]

    });
});
</script>

在我的浏览器上显示产品文档的链接(我尝试使用Firefox和Internet Explorer)在底部状态栏上,但是当我点击它们时,没有弹出任何内容(我检查了我的HTML源代码,锚标签显示正确的URL链接)。任何人都可以弄清楚为什么我的链接不起作用?我正在使用最新版本的JQuery和JSTree。谢谢!

1 个答案:

答案 0 :(得分:0)

删除UI插件后,我获得了工作链接,我猜UI插件不喜欢使用HTML链接......