boostrap

初始化树:

1
2
3
4
5
6
7
8
9
10
var treeData= getTreeData();
console.log(treeData);
$('#treeview1').treeview({
// backColor: "#FFFFFF",
color: "#428bca",
// enableLinks: true,
showBorder:false,
data: treeData

});

其中 treeData必须的属性必须有text 要显示的内容,href 为主键,nodes: 是该列的所有子节点