easyui 获取子节点并修改节点颜色

onLoadSuccess:function(node,param){
          var childrens = $('#phenotype').tree('getChildren', node.target);
              for ( var int = 0; int < childrens.length; int++) {
                   if(childrens[int].matchWeight == 1){
                       $('#phenotype').tree('update', {
                        target: childrens[int].target,
                        text: '<span style="color:green">'+childrens[int].text+'</span>'
                    });
                   }
            }

          },

$('#phenotype') 为树的id

你可能感兴趣的:(easyui 获取子节点并修改节点颜色)