在Jstree中创建节点后,它会消失

时间:2010-09-01 12:57:47

标签: javascript jstree

创建节点消失后,由厚箱窗口中的函数触发的节点创建。为什么会这样?这是我的代码清单:

$("#treeDiv").jstree("create", 
         "#node_133", 
         "last",
         { 
            "attr" : { "rel" : $("#nodetype option:selected").val().replace("add_","") }, 
            "data" : fratitle 
         }, 
         function() { alert("added"); }, 
         true
 );

1 个答案:

答案 0 :(得分:0)

解决了它。 Db表id字段没有auto_increment属性。因此,当调用回调函数时,r.status和r.id等于0并且回滚函数将树回滚到它的默认状态,之后树节点就消失了。