那些知道JsTree jQuery插件的人吗?
我已经实现了它并使其适用于大多数基本功能,但现在我希望能够使用该功能来删除和创建新文件夹。我无法在文档中找到有关如何执行此操作的信息。
以下是我现在使用它的方法: $( “#divLeftPane”) .bind(“reselect.jstree”,function(){
if ($(".jstree-clicked").length == 0)
url = "";
else
url = "?url=" + $(".jstree-clicked").attr("rel");
loadFiles(url);
$("#currentDir").val($(".jstree-clicked").attr("rel"));
$("a").click(function () {
url = "?url=" + $(this).attr("rel");
loadFiles(url);
$("#currentDir").val($(this).attr("rel"));
});
}).jstree({
"html_data": {
"ajax": {
"url": "/Customers/Directories/"
}
},
"ui": {
"select_limit": 2,
"select_multiple_modifier": "alt",
"selected_parent_close": "select_parent"//,
// "initially_select": ["phtml_2"]
},
"themes": {
"theme": "classic",
"dots": false,
"icons": true
},
"plugins": ["themes", "html_data", "ui", "cookies"]
});
};
答案 0 :(得分:0)
糟糕,没有仔细阅读文档,它是在一个名为CRRM的插件之下(也许这个名字让我失望了一点:-))http://www.jstree.com/documentation/crrm