用php和js实现简单的树结构(点击收缩与拉伸)


<script language="javascript" type="text/javascript">
function show(eventName)
{
    $("#"+eventName).children().toggle();
}

</script>

//树的节点,id是每个节点的唯一标志,pid表示他的父节点 ,name表示节点的名称

<?php
$result[0] = array('id'=>1,'pid'=>0,'name'=>'公司1',);
$result[1] = array('id'=>2,'pid'=>0,'name'=>'公司2');
$result[2] = array('id'=>3,'pid'=>2,'name'=>'公司2的子公司1');
$result[3] = array('id'=>4,'pid'=>1,'name'=>'公司1的子公司1');
$result[4] = array('id'=>5,'pid'=>2,'name'=>'公司2的子公司2');
$result[5] = array('id'=>6,'pid'=>3,'name'=>'公司2的子公司1的子公司1');
$result[6] = array('id'=>7,'pid'=>3,'name'=>'公司2的子公司1的子公司2');
$result[7] = array('id'=>8,'pid'=>3,'name'=>'公司2的子公司1的子公司3');
$result[8] = array('id'=>9,'pid'=>8,'name'=>'公司2的子公司1的子公司3');
$result[9] = array('id'=>10,'pid'=>9,'name'=>'公司2的子公司1的子公司3');
//简易类
class tree

{

//创建树

   function tree($rs,$idName,$pidName,$nodeName)

    {
        $this->idName    = $idName;//当前节点的id
        $this->pidName    = $pidName;//父节点的id
        $this->nodeName = $nodeName;
        $tree = array();
        foreach((array)$rs as $k=>$v)
        {
            $tree[$v[$pidName]][] = $v;
        }
 
        $this->treeArray = $tree;

    }

//显示树

    function showTree($root,$deep)
    {
        if( $this->treeArray[$root] )
        {
            foreach($this->treeArray[$root] as $k=>$v)
            {
                $t = $v[$this->idName];
                $p = $v[$this->pidName];
                $name=$v[$this->nodeName];

                $str   = str_repeat("&nbsp;",$deep*4)."|-".str_repeat("-",$deep);

//在每个节点的前面加个<span>标签

                $html .="<span id='{$t}' οnclick='show($t)'>"."{$str}"."{$v[$this->nodeName]}<br/>";
                if($this->treeArray[$t] )

                {

//使用递归的方法在每个节点的后面价格</span>标签

                   $html .="<span id='{$t}' οnclick='show($t)' style='display:none'>";
                    $gx = $deep + 1;
                    $html .= $this->showTree( $t,$gx );
                    $html .="</span>";
                }
                    $html .="</span>";
            }
        }
        return $html;
    }
}
$tree = new tree($result,'id','pid','name');
echo $tree->showTree(0,0);

?>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章