三个截图搞定哈
![](https://img.haomeiwen.com/i4173441/1686ed3229fbc9b2.png)
![](https://img.haomeiwen.com/i4173441/7b1c1c459febb9a5.png)
/**
* 自定义jstree types icon
*/
function processTreeTypes() {
var types = {
"root" : {//根节点
"icon" : "fa fa-users",
},
"root_opened" : {//根节点打开样式
"icon" : "fa fa-users",
},
"parent" : {//父节点
"icon" : "fa fa-users",
},
"parent_opened" : {//父节点打开样式
"icon" : "fa fa-users",
},
"node" : {//叶子节点
"icon" : "fa fa-user",
}
}
return types;
}
![](https://img.haomeiwen.com/i4173441/08a6036c5570f699.png)
网友评论