树形结构列表用JSP怎么实现?
我需要一个用JSP和数据结构里面的知识做出来的树形结构列表,就是还可以分级的,哪位仁兄可以给个程序代码,小弟感激不尽了,越快越好,急急急!!!谢谢大哥了!!!小弟积分不多...
我需要一个用JSP和数据结构里面的知识做出来的树形结构列表,就是还可以分级的,哪位仁兄可以给个程序代码,小弟感激不尽了,越快越好,急急急!!!谢谢大哥了!!!小弟积分不多,只有这么多了,一定铭记于心的
展开
3个回答
展开全部
我的百度空间有篇文章,是写生成树菜单的。
http://hi.baidu.com/2hill/blog/item/f22f4ed827b8e23733fa1cca.html
代码我都已经写好了,你复制就行了,当然,也有一些解释,应该可以看懂的。
我是用Js读取XML实现的,至于用jsp还是.net都无关系,只要用Jsp输出XML数据就行了。
到我的空间逛逛吧,有更多收获,http://www.yuefan.net
http://hi.baidu.com/2hill/blog/item/f22f4ed827b8e23733fa1cca.html
代码我都已经写好了,你复制就行了,当然,也有一些解释,应该可以看懂的。
我是用Js读取XML实现的,至于用jsp还是.net都无关系,只要用Jsp输出XML数据就行了。
到我的空间逛逛吧,有更多收获,http://www.yuefan.net
展开全部
----html文件
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<script language="JavaScript">
//判断浏览器的变量
NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;
//定义各个层的位置及显示状态
if (ver4) {
with (document) {
write("<STYLE TYPE='text/css'>");
if (NS4) {
write(".parent {position:absolute; visibility:visible}");
write(".child {position:absolute; visibility:visible}");
write(".regular {position:absolute; visibility:visible}")
}
else {
write(".child {display:none}")
}
write("</STYLE>");
}
}
//当菜单打开时,页面上菜单以下的东西的位置顺序往下推,菜单合起时,菜单以下的东西自动上移。
function arrange() {
nextY = document.layers[firstInd].pageY +document.layers[firstInd].document.height;
for (i=firstInd+1; i<document.layers.length; i++) {
whichele = document.layers[i];
if (whichele.visibility != "hide") {
whichele.pageY = nextY;
nextY += whichele.document.height;
}
}
}
//初始化菜单
function initIt(){
if (!ver4) return;
if (NS4) {
for (i=0; i<document.layers.length; i++) {
whichele = document.layers[i];
if (whichele.id.indexOf("Child") != -1) whichele.visibility = "hide";
}
arrange();
}
else {
divColl = document.all.tags("DIV");
for (i=0; i<divColl.length; i++) {
whichele = divColl(i);
if (whichele.className == "child") whichele.style.display = "none";
}
}
}
//展开菜单的方法
function expandIt(ele) {
if (!ver4) return;
if (IE4) {
whichele = eval(ele + "Child");
if (whichele.style.display == "none") {
whichele.style.display = "block";
}
else {
whichele.style.display = "none";
}
}
else {
whichele = eval("document." + ele + "Child");
if (whichele.visibility == "hide") {
whichele.visibility = "show";
}
else {
whichele.visibility = "hide";
}
arrange();
}
}
onload = initIt;
</script>
</head>
<body>
<div id="menuParent" class="parent"> <a href="#" onClick="expandIt('menu'); return false" >父菜单一</a></div>
<div id="menuChild" class="child"> <a href="#" target="_blank" >子菜单一</a><br>
<a href="#" target="_blank" >子菜单二</a><br>
<a href="#" target="_blank" >子菜单三</a></div>
<div id="Menu2Parent" class="parent"> <a href="#" onClick="expandIt('Menu2'); return false" >父菜单二</a></div>
<div id="Menu2Child" class="child"> <a href="#" target="_blank" >子菜单一</a><br>
<a href="#" target="_blank" >子菜单二</a><br>
<a href="#" target="_blank" >子菜单三</a></div>
<div id="Menu3Parent" class="parent"> <a href="#" onClick="expandIt('Menu3'); return false" >父菜单三</a></div>
<div id="Menu3Child" class="child"> <a href="#" target="_blank" >子菜单一</a><br>
<a href="#" target="_blank" >子菜单二</a><br>
<a href="#" target="_blank" >子菜单三</a></div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<script language="JavaScript">
//判断浏览器的变量
NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;
//定义各个层的位置及显示状态
if (ver4) {
with (document) {
write("<STYLE TYPE='text/css'>");
if (NS4) {
write(".parent {position:absolute; visibility:visible}");
write(".child {position:absolute; visibility:visible}");
write(".regular {position:absolute; visibility:visible}")
}
else {
write(".child {display:none}")
}
write("</STYLE>");
}
}
//当菜单打开时,页面上菜单以下的东西的位置顺序往下推,菜单合起时,菜单以下的东西自动上移。
function arrange() {
nextY = document.layers[firstInd].pageY +document.layers[firstInd].document.height;
for (i=firstInd+1; i<document.layers.length; i++) {
whichele = document.layers[i];
if (whichele.visibility != "hide") {
whichele.pageY = nextY;
nextY += whichele.document.height;
}
}
}
//初始化菜单
function initIt(){
if (!ver4) return;
if (NS4) {
for (i=0; i<document.layers.length; i++) {
whichele = document.layers[i];
if (whichele.id.indexOf("Child") != -1) whichele.visibility = "hide";
}
arrange();
}
else {
divColl = document.all.tags("DIV");
for (i=0; i<divColl.length; i++) {
whichele = divColl(i);
if (whichele.className == "child") whichele.style.display = "none";
}
}
}
//展开菜单的方法
function expandIt(ele) {
if (!ver4) return;
if (IE4) {
whichele = eval(ele + "Child");
if (whichele.style.display == "none") {
whichele.style.display = "block";
}
else {
whichele.style.display = "none";
}
}
else {
whichele = eval("document." + ele + "Child");
if (whichele.visibility == "hide") {
whichele.visibility = "show";
}
else {
whichele.visibility = "hide";
}
arrange();
}
}
onload = initIt;
</script>
</head>
<body>
<div id="menuParent" class="parent"> <a href="#" onClick="expandIt('menu'); return false" >父菜单一</a></div>
<div id="menuChild" class="child"> <a href="#" target="_blank" >子菜单一</a><br>
<a href="#" target="_blank" >子菜单二</a><br>
<a href="#" target="_blank" >子菜单三</a></div>
<div id="Menu2Parent" class="parent"> <a href="#" onClick="expandIt('Menu2'); return false" >父菜单二</a></div>
<div id="Menu2Child" class="child"> <a href="#" target="_blank" >子菜单一</a><br>
<a href="#" target="_blank" >子菜单二</a><br>
<a href="#" target="_blank" >子菜单三</a></div>
<div id="Menu3Parent" class="parent"> <a href="#" onClick="expandIt('Menu3'); return false" >父菜单三</a></div>
<div id="Menu3Child" class="child"> <a href="#" target="_blank" >子菜单一</a><br>
<a href="#" target="_blank" >子菜单二</a><br>
<a href="#" target="_blank" >子菜单三</a></div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询