|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在相册系统的开发上,因为采用的是团队分工合作方式,更让我明白了在一个团队之中,团队成员之间的交流沟通的重要性,如果没有很好的沟通交流,成员之间的任务没有分配好。 <? /* 看到良多伴侣问过无穷级别菜单的的成绩(其实实际上仍是有级其余,究竟要遭到个便利的前提的限制,好比: 数据库字段的类型等),我已经用老迈(絮聒)供应的代码写出来过无穷级其余菜单,然而感到后果不是很好(视觉上),因而趁着"夜深人静"就写这个"无穷制级其余菜单",其实事理很复杂,次要是数据表的设计,还有递归办法的利用(假如有工夫我会用中值排序法来做),我会鄙人面给出数据布局的设计(十分复杂),这里我没有加上竖直的虚线(windows资本办理器的虚线),同时Sql语句我也将其固定,人人可以依据本人的需求来修正!假如有成绩可以接洽我:msn:banneryue@sina.com,QQ:7665656,E_mail:yuepengfei@mail.banner.com.cn
今天(已是明天了,呵呵)我会供应一个测试页面让人人来看(由于我在宿舍只能拨号上彀,Ip地址不固定)
*/
/** 递归显示子节点函数
*
*
* @param $SearchPattern 查找的前提(like)
* @param $BaseNum 节点的层数
*/
function ListChildTree($SearchPattern,$BaseNum){
global $Tree;//声明毗连数据库的句柄为全局
$Sql="select DepartmentId,DepartmentName from test where DepartmentId like '$SearchPattern'"; //查找孩子节点
$QueryChild=$Tree->query($Sql);
while($Result=$Tree->fetch_array($QueryChild)) { //掏出孩子节点
$Space="";
for($j=0;$j<((strlen($SearchPattern)/3)-$BaseNum);$j++)
$Space.=" "; //设置显示节点后面的间隔,这里的空格的html被这里主动交换成" "了
$ChildDepartment=trim($Result[0])."___";
$ChildSql="select count(*) from test where DepartmentId like '$ChildDepartment'";//查找孩子节点的孩子节点
$ChildResult=$Tree->query_first($ChildSql);
$TableId="ta".trim($Result[0]); //设置表格Id
$TablePic="ta".trim($Result[0])."pic"; //设置图片Id
if($ChildResult[0]<1){//假如没有找到孩子节点的节点,则显示"-"图片
?>
<tr><td><?=$Space?><span align="absmiddle"><img src="http://edu.cnzz.cn/NewsInfo/leaf.gif" border="0" align="absmiddle" width="35" height="17"></span><font size="2"><A href="process.php?SearchPattern=<?=trim($Result[0])?>" class="F1"><?=$Result[1]?></a></font>
<table id="<?=$TableId?>" style="display=none" cellspacing="0" cellpadding="0">
<?}else{ //找到则显示"+"图片
?>
<tr><td><?=$Space?><a style="cursor:hand"><span align="absmiddle"><img id="<?=$TablePic?>" src="http://edu.cnzz.cn/NewsInfo/parent.gif" border="0" align="absmiddle" width="35" height="17"></span></a><font size="2"><A href="process.php?SearchPattern=<?=trim($Result[0])?>" class="F1"><?=$Result[1]?></a></font>
<table id="<?=$TableId?>" style="display=none" cellspacing="0" cellpadding="0">
<?
ListChildTree($ChildDepartment,$BaseNum);//递归挪用函数自己来显示其他孩子节点
}//end if?>
</table>
<?}//end while
}//end function?>
<html>
<head>
<title>无穷级菜单测试</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../text.CSS" type="text/css">
<script language="javascript">
function expands(expid,picid) //显示图片张合的Js
{ // alert("this.document.all["+expid+"].style.display");
if(this.document.all[expid].style.display=="none")
{ this.document.all[expid].style.display="block";
this.document.all[picid].src="http://edu.cnzz.cn/NewsInfo/leaf.gif";
}
else
{
this.document.all[expid].style.display="none";
this.document.all[picid].src="http://edu.cnzz.cn/NewsInfo/parent.gif";
}
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?
require("do_mySql.php");
$Tree = new DB_Sql;
$Tree->connect();//毗连数据库,可依据需求换成本人的代码
$Sql="select DepartmentId,DepartmentName from test where length(DepartmentId)=3";//提出最下层节点(祖宗节点),依据需求本人修正
$Result=$Tree->query_first($Sql);
?>
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" width="766" bordercolor="#DDCF90" height="392">
<tr>
<td valign="top">
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="372">
<tr>
<td width="368"><a style="cursor:hand"><span align="absmiddle"> <img id="dwimg" SRC="http://edu.cnzz.cn/NewsInfo/parent.gif" border="0" align="absmiddle" width="35" height="17"></span></a><font size="2"><a href="process.php?SearchPattern=<?=$Result[0]?>"><?=$Result[1]?></a></font>
<table id="dwtop" style="display=none" cellspacing="0" cellpadding="0">
<?
$FirstDepartment=$Result[0];
$BaseNum=strlen($FirstDepartment)/3;//盘算层数,其实这个有点过剩,由于其必为第一层
$SearchPattern=$FirstDepartment."___"; //设置查找前提
ListChildTree($SearchPattern,$BaseNum); //显示祖宗节点的孩子节点
?>
</table>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</center>
</div>
</body>
</html>
<?/* 表布局的设计
因为是测试表设计得十分的复杂:
CREATE TABLE test (
id mediumint(8) unsigned NOT NULL auto_increment, #流水号
DepartmentId varchar(100) NOT NULL default '', #单元代号
DepartmentName varchar(100) NOT NULL default '', #单元称号
KEY id (id)
)
数据拔出的代码我在这里就不那出来给人人了(很轻易写,信任人人都能写出来)
数据表的划定规矩为:
001为第一级(假如999个不敷,请自行添加)
001001为001的第一个子节点,001002为001的第二个子节点
001001001为001001的第一个子节点,以此类推……
我这里只设置了一个"祖宗"(001),所以在法式中就直接挪用了,可依据需求本人来设置,并对代码作复杂的修正便可!
好了,就到这里了,假如人人有成绩接待和我切磋!最好祝人人明天任务兴奋!
先吸颗烟在睡觉!好累!(由于方才写了一个webFtp,假如哪位兄弟姐妹需求请mail我)
*/
?>
我先解释一下我的学习思路。 |
|