以编程方式将子节点添加到jstree

时间:2010-08-13 18:33:48

标签: javascript jstree

我正在尝试编写一些动态地将节点添加到jstree的代码。我已经按照http://www.jstree.com/documentation/crrm上的文档进行了操作,但是无法得到一个简单的例子 - 正在添加节点child2,但它被添加到节点'root.id'而不是'child1.id '如规定...任何提示将不胜感激。代码如下

<html>
<head>
<script type="text/javascript" src="http://static.jstree.com/v.1.0rc2/jquery.js"></script>
<script type="text/javascript" src="http://static.jstree.com/v.1.0rc2/jquery.jstree.js"></script>

<script type="text/javascript">
$(document).ready(function() {
    $(function () {
        $("#tree").jstree({ 
            "json_data" : {
                "data" : [
                    { 
                        "data" : "parent", 
                        "attr" : { "id" : "root.id" }, 
                        "children" : [ { "data" : "child1",
                                         "attr" : { "id" : "child1.id" },
                                         "children" : [ ] }
                                     ]
                    },
                ]
            },
            "plugins" : [ "themes", "json_data", "crrm" ]
        });
    });
    $("#add").click(function() {
        $("#tree").jstree("create", $("#child1.id"), "inside",  { "data" : "child2" },
                          function() { alert("added"); }, true);
    });
});
</script>
</head>

<body>

<div id="tree" name="tree"></div>

<input type="button" id="add" value="add" />
</body>
</html>

2 个答案:

答案 0 :(得分:13)

在ID中使用句点时,您需要像以下一样转义它们:

$("#tree").jstree("create", $("#child1\\.id"), "inside",  { "data" : "child2" },
                          function() { alert("added"); }, true);

这是因为它使用jQuery选择器。在这里的jsTree FAQ中提到: http://www.jstree.com/faq/

答案 1 :(得分:3)

首先初始化jstree(在我的例子中我使用ajax),将check_callback放入核心obj并在核心obj之后调用插件,如下所示:

jQuery('#jstree_demo_div').jstree({
    'core' : {
          'data' : {
            'url' : 'data/mapas.php',

          },
          "check_callback" : function(e,data){
              console.log(data)
          }
      },
      "plugins" : [ "contextmenu" ] })

第二次使用此行并将$(&#39;#j1_1&#39;)作为父级,json中的数据,&#39; last&#39;作为位置或&#39;首先&#39;,函数回调(在我的例子中是函数tales()),内部参数设置为true

jQuery("#jstree_demo_div").jstree(true).create_node( $('#j1_1'), {text: "New node", id: true} , "last",tales(), true );