| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 823 人关注过本帖
标题:求树状菜单问题
取消只看楼主 加入收藏
助人为乐
Rank: 1
等 级:新手上路
帖 子:54
专家分:0
注 册:2007-3-9
收藏
 问题点数:0 回复次数:2 
求树状菜单问题

如何实现菜单打开是关闭的??点击后打开菜单

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>

<script>
//Example: obj = findObj("image1");

function findObj(theObj, theDoc)

{

var p, i, foundObj;

if(!theDoc) theDoc = document;

if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)

{

theDoc = parent.frames[theObj.substring(p+1)].document;

theObj = theObj.substring(0,p);

}

if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];

for (i=0; !foundObj && i < theDoc.forms.length; i++)

foundObj = theDoc.forms[i][theObj];

for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++)

foundObj = findObj(theObj,theDoc.layers[i].document);

if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);

return foundObj;

}

</script>

<style type="text/css">
<!--
.ab {
background-image: url(4.gif);
background-repeat: no-repeat;
cursor: hand;
}
.ab2 {
background-image: url(02.gif);
background-repeat: no-repeat;
padding-left: 15px;
cursor: hand;
}
.ab1 {
padding-left: 25px;
}
-->
</style>


</head>

<body>
<table width="200" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" bgcolor="#0099FF" class="ab" onmouseup="with(findObj('xwgl'))if(style.display=='none') {style.display=''; this.style.backgroundImage='url(3.gif)'}else{style.display='none'; this.style.backgroundImage='url(4.gif)'}">新闻管理</td>
</tr>
<tr id="xwgl">
<td height="25" class="ab1"><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" class="ab2"><a href="#">新闻修改</a></td>
</tr>
<tr>
<td height="25" class="ab2"><a href="#">新闻审核</a></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25" bgcolor="#0099FF" class="ab" onmouseup="with(findObj('tpgl'))if(style.display=='none') {style.display=''; this.style.backgroundImage='url(3.gif)'}else{style.display='none'; this.style.backgroundImage='url(4.gif)'}">图片管理</td>
</tr>
<tr id="tpgl">
<td height="25" class="ab1"><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" class="ab2"><a href="#">图片修改</a></td>
</tr>
<tr>
<td height="25" class="ab2"><a href="#">图片审核</a></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>

[此贴子已经被作者于2007-7-2 14:02:57编辑过]

搜索更多相关主题的帖子: 菜单 
2007-07-02 13:59
助人为乐
Rank: 1
等 级:新手上路
帖 子:54
专家分:0
注 册:2007-3-9
收藏
得分:0 
非常感谢您 您这也是打开页面菜单时是开开着的。我想让老师们帮我分析一下 我源码、里脚本怎么写 才可以实现打开是菜单是关闭的?

[此贴子已经被作者于2007-7-2 18:14:11编辑过]


2007-07-02 18:11
助人为乐
Rank: 1
等 级:新手上路
帖 子:54
专家分:0
注 册:2007-3-9
收藏
得分:0 
非常感谢  style="display:none" 我也想出来了。。。
2007-07-02 18:58
快速回复:求树状菜单问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016758 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved