JSTree 生成在带有 Struts2 的 JSP 页面中不可用的链接
我在 JSP 页面(Struts2 web 应用程序的一部分)中使用 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。谢谢!
I have a tree generated with JSTree in my JSP page (part of a Struts2 webapp) as follows:
<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>
Thing is the links to product documentation show up on my browser (I tried using both Firefox and Internet Explorer) on the bottom status bar, but when I click on them, nothing pops up (I checked my HTML source code, and the anchor tags are showing the correct URL links). Could anyone figure out why my links aren't working? I am using both the latest versions of JQuery and JSTree. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除 UI 插件后,我得到了可以使用的链接,我猜 UI 插件不喜欢使用 HTML 链接...
I got the links to work after removing the UI plugin, I guess the UI plugin doesn't like to work with HTML links...