插件地址:http://www.ztree.me
数据:[{"id":1,"pId":-1,"name":"根目录"},{"id":2,"pId":1,"name":"子目录1"}]
<ul id="tree" class="ztree" style="padding: 0px 0px;"></ul>
$.ajax({
method: ‘get‘,
url: ‘api/ZTree/Get‘,
contentType: "application/json; charset=utf-8",
success: function (data) {
$.fn.zTree.init($("#tree"), {
view: {
showIcon: true,
showLine: true,
showTitle: true
},
data: {
simpleData: {
enable: true,
idKey: "id",
pIdKey: "pId",
rootPId:-1
},
key: {
title: "Info"
}
},
callback: {
onClick: function (event,treeId,treeNode,clickFlag) {
console.log(treeNode)
}
}
}, eval(data));
}
});
原文:http://www.cnblogs.com/CodingArt/p/5701284.html