1

我能够创建节点,但事件没有触发。Firefox 中没有报告错误。我做错了什么...

     $("#treeFile1").jstree("create", null, "outside", { "attr" : { "rel" : "folder" }}).bind("create.jstree", function(event,data)
                    {
                            alert("hello");
                    });

正如我所提到的,节点(文件夹)的创建没有问题。事件没有触发......

4

1 回答 1

2

直接将绑定连接到树容器,如下所示:

   $("#treeFile1").bind("create.jstree", function(event,data)
   {
            alert("hello");
   });
于 2013-03-27T02:24:01.630 回答