1
我是JQuery/Jstree的新手。當我試圖以編程方式選擇一個節點時,它總是返回容器節點,而不是我試圖獲得的子節點。 請幫忙。問題:Jstree select節點總是返回容器節點
我的代碼如下,
<div id="containerId" class="demo">
<ul>
<li id="phtml_1">
<a href="#">Root node 1</a>
<ul>
<li id="zzx">
<a href="#">Child node 1</a>
</li>
<li id="phtml_3">
<a href="#">Child node 2</a>
</li>
</ul>
</li>
</ul>
的JavaScript
$(function() {
$("#containerId").jstree({
"plugins" : [ "themes", "html_data", "ui" ]
});
});
腳本
$(document).ready(function() {
var node= $("#containerId").jstree("select_node","#zzx");
//Problem here, why the id is still the "containerId", not the "zzx"?
alert(node.attr("id"));
});
感謝--Roger