标签: javascript jquery jstree
我必须以这样的方式编写代码:如果父节点#id是“问题”,则无法创建子节点。我试过用这样的东西:
if(data.rslt.parent.attr("id") == "question"){ alert("Not allowed to created Question under a Question"); jQuery("#treeID").jstree("remove"); }
这确实可以做任何事情。它仍然创建节点并且不会删除它。
请帮忙