DIV+CSS+JS树形菜单,可以刷新不改变菜单

<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html  xmlns ="http://www.w3.org/1999/xhtml" >
< head >
< meta  http-equiv ="Content-Type"  content ="text/html; charset=gb2312" >
< title > Div+CSS+JS树型菜单,可刷新 </ title >
< meta  name ="description"  content ="http://www.NETAny.net" >
< style  type ="text/css" > ...
<!--
*
{...}{margin:0;padding:0;border:0;}
body 
{...}{
font-family
: arial, 宋体, serif;
font-size
:12px;
}

#nav 
{...}{
width
:180px;
 line-height
: 24px; 
list-style-type
: none;
text-align
:left;
 
/**//*定义整个ul菜单的行高和背景色*/
}


/**//*==================一级目录===================*/
#nav a 
{...}{
width
: 160px; 
display
: block;
padding-left
:20px;
/**//*Width(一定要),否则下面的Li会变形*/
}


#nav li 
{...}{
background
:#CCC; /**//*一级目录的背景色*/
border-bottom
:#FFF 1px solid; /**//*下面的一条白边*/
float
:left;
/**//*float:left,本不应该设置,但由于在Firefox不能正常显示
继承Nav的width,限制宽度,li自动向下延伸
*/

}


#nav li a:hover
{...}{
background
:#CC0000; /**//*一级目录onMouseOver显示的背景色*/
}


#nav a:link 
{...}{
color
:#666; text-decoration:none;
}

#nav a:visited 
{...}{
color
:#666;text-decoration:none;
}

#nav a:hover 
{...}{
color
:#FFF;text-decoration:none;font-weight:bold;
}


/**//*==================二级目录===================*/
#nav li ul 
{...}{
list-style
:none;
text-align
:left;
}

#nav li ul li
{...}{ 
background
: #EBEBEB; /**//*二级目录的背景色*/
}


#nav li ul a
{...}{
 padding-left
:20px;
 width
:160px;
/**//* padding-left二级目录中文字向右移动,但Width必须重新设置=(总宽度-padding-left)*/
}


/**//*下面是二级目录的链接样式*/

#nav li ul a:link 
{...}{
color
:#666; text-decoration:none;
}

#nav li ul a:visited 
{...}{
color
:#666;text-decoration:none;
}

#nav li ul a:hover 
{...}{
color
:#F3F3F3;
text-decoration
:none;
font-weight
:normal;
background
:#CC0000;
/**//* 二级onmouseover的字体颜色、背景色*/
}


/**//*==============================*/
#nav li:hover ul 
{...}{
left
: auto;
}

#nav li.sfhover ul 
{...}{
left
: auto;
}

#content 
{...}{
clear
: left; 
}

#nav ul.collapsed 
{...}{
display
: none;
}

-->

#PARENT
{...}{
width
:300px;
padding-left
:20px;
}

</ style >
</ head >

< body >
< div  id ="PARENT" >
< ul  id ="nav" >
< li >< href ="#Menu=ChildMenu1"  onclick ="DoMenu('ChildMenu1')" > 我的网站 </ a >
< ul  id ="ChildMenu1"  class ="collapsed" >
< li >< href ="http://www.netany.net"  target ="_blank" > www.netany.net </ a ></ li >
< li >< href ="http://www.netany.net"  target ="_blank" > www.netany.net </ a ></ li >
< li >< href ="http://www.netany.net"  target ="_blank" > www.netany.net </ a ></ li >
</ ul >
</ li >
< li >< href ="#Menu=ChildMenu2"  onclick ="DoMenu('ChildMenu2')" > 我的帐务 </ a >
< ul  id ="ChildMenu2"  class ="collapsed" >
< href ="http://www.netany.net"  target ="_blank" > 支付 </ a ></ li >
< li >< href ="#" > 网上支付 </ a ></ li >
< li >< href ="#" > 登记汇款 </ a ></ li >
< li >< href ="#" > 在线招领 </ a ></ li >
< li >< href ="#" > 历史帐务 </ a ></ li >
</ ul >
</ li >
< li >< href ="#Menu=ChildMenu3"  onclick ="DoMenu('ChildMenu3')" > 网站管理 </ a >
< ul  id ="ChildMenu3"  class ="collapsed" >
< li >< href ="#" > 登录 </ a ></ li >
< href ="http://www.netany.net"  target ="_blank" > 管理 </ a ></ li >
< li >< href ="#" > 管理 </ a ></ li >
< li >< href ="#" > 管理 </ a ></ li >
</ ul >
</ li >
< li >< href ="#Menu=ChildMenu4"  onclick ="DoMenu('ChildMenu4')" > 网站管理 </ a >
< ul  id ="ChildMenu4"  class ="collapsed" >
< li >< href ="#" > 登录 </ a ></ li >
< href ="http://www.netany.net"  target ="_blank" > 管理 </ a ></ li >
< li >< href ="#" > 管理 </ a ></ li >
< li >< href ="#" > 管理 </ a ></ li >
</ ul >
</ li >
</ ul >
</ div >

< div  style ="width:300;padding-left:30px;" >
</ br ></ br >
工作需要搞了一个菜单,分享给大家,大家一齐学习
</ br ></ br >
< p > 请大家支持: < href ="http://www.netany.net"  target ="_blank" > http://www.netany.net </ a ></ p >
</ div >
</ body >
</ html >
< script  type =text/javascript > ... <!--
var LastLeftID = "";

function menuFix() ...{
var obj = document.getElementById("Nav").getElementsByTagName("li");

for (var i=0; i<obj.length; i++...{
obj[i].onmouseover
=function() ...{
this.className+=(this.className.length>0? " """+ "sfhover";
}

obj[i].onMouseDown
=function() ...{
this.className+=(this.className.length>0? " """+ "sfhover";
}

obj[i].onMouseUp
=function() ...{
this.className+=(this.className.length>0? " """+ "sfhover";
}

obj[i].onmouseout
=function() ...{
this.className=this.className.replace(new RegExp("( ?|^)sfhover/b"), "");
}

}

}


function DoMenu(emid)
...{
var obj = document.getElementById(emid); 
obj.className 
= (obj.className.toLowerCase() == "expanded"?"collapsed":"expanded");
if(LastLeftID!=""//关闭上一个Menu
...{
document.getElementById(LastLeftID).className 
= "collapsed";
}

LastLeftID 
= emid
}


function GetMenuID()
...{

var MenuID="";
var _paramStr = new String(window.location.href);

var _sharpPos = _paramStr.indexOf("#");

if (_sharpPos >= 0 && _sharpPos < _paramStr.length - 1)
...{
_paramStr 
= _paramStr.substring(_sharpPos + 1, _paramStr.length);
}

else
...{
_paramStr 
= "";
}


if (_paramStr.length > 0)
...{
var _paramArr = _paramStr.split("&");
if (_paramArr.length>0)
...{
var _paramKeyVal = _paramArr[0].split("=");
if (_paramKeyVal.length>0)
...{
MenuID 
= _paramKeyVal[1];
}

}

/**//*
if (_paramArr.length>0)
{
var _arr = new Array(_paramArr.length);
}

//取所有#后面的,菜单只需用到Menu
//for (var i = 0; i < _paramArr.length; i++)
{
var _paramKeyVal = _paramArr[i].split('=');

if (_paramKeyVal.length>0)
{
_arr[_paramKeyVal[0]] = _paramKeyVal[1];

}
*/

}


if(MenuID!="")
...{
DoMenu(MenuID)
}

}


GetMenuID(); 
//*这两个function的顺序要注意一下,不然在Firefox里GetMenuID()不起效果
menuFix();
-->
</ script >
  http://www.corange.cn/archives/2008/03/546.html

转载于:https://www.cnblogs.com/ajuanabc/archive/2006/11/13/2463886.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值