我需要填充我的jsTree并在选择jsTree的任何节点时触发几个ajax调用,我能够这样做。但问题是我必须重新填充同一棵树并再次触发ajax调用。重新填充后,我无法在选择任何树节点时触发SELECT或CLICK NODE事件。以下是代码。
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type="text/javascript"
src="//static.jstree.com/3.2.1/assets/dist/jstree.min.js"></script>
<link rel="stylesheet"
href="//static.jstree.com/3.2.1/assets/dist/themes/default/style.min.css" />
<script>
$(document).ready(function(){
$("#tree").on("select_node.jstree", function(event, node) {
$("#para").text("");
var selected = node.instance.get_selected();
if(selected.length === 1) {
$("#para").text(selected[0]); // Here goes my ajax call.
} else if(selected.length > 1) {
alert("hi");
}
});
});
function getData(){
$('#tree').jstree("destroy").empty();
$('#tree').jstree({
'core' : {
'data' : [
{ "id" : "ajson1", "parent" : "#", "text" : "Root node1" },
{ "id" : "ajson2", "parent" : "#", "text" : "Root node 2" },
{ "id" : "ajson3", "parent" : "ajson2", "text" : "Child 1" },
{ "id" : "ajson4", "parent" : "ajson2", "text" : "Child 2" },
]
}
});
}
</script>
</head>
<body>
<a id="go" href="#" onclick="getData()">Get Tree</a><br><br><br><br>
<div id="tree"></div>
<p id="para"></p>
</body>
</html>
您可以将此代码直接粘贴到w3school网站并进行测试。不能成为一个jsFiddle。
答案 0 :(得分:1)
您可以按照以下代码行以编程方式选择节点。
$('#treeSelector').jstree().select_node('node_id');
&#13;
它将触发select_node&amp;改变事件。
答案 1 :(得分:1)
创建一个单独的函数来添加事件监听器..然后在Doc ready中调用该函数,以及在getData()的末尾。像
$(document).ready(function(){
function addEventListener(){
$("#tree").on("select_node.jstree", function(event, node) {
$("#para").text("");
var selected = node.instance.get_selected();
if(selected.length === 1) {
$("#para").text(selected[0]); // Here goes my ajax call.
} else if(selected.length > 1) {
alert("hi");
}
});
}
addEventListener();
function getData(){
$('#tree').jstree("destroy").empty();
$('#tree').jstree({
'core' : {
'data' : [
{ "id" : "ajson1", "parent" : "#", "text" : "Root node1" },
{ "id" : "ajson2", "parent" : "#", "text" : "Root node 2" },
{ "id" : "ajson3", "parent" : "ajson2", "text" : "Child 1" },
{ "id" : "ajson4", "parent" : "ajson2", "text" : "Child 2" },
]
}
});
addEventListener();
}
})