php++简单左侧导航,简单的jquery左侧导航栏和页面选中效果

这里是要实现导航的左侧并选中的,此功能需引用jquery

左侧导航:

js代码:

//等待dom元素加载完毕.

$(document).ready(function(){

$(".level1 > a").click(function(){

$(this).addClass("current") //给当前元素添加"current"样式

.next().show() //下一个元素显示

.parent().siblings().children("a").removeClass("current") //父元素的兄弟元素的子元素移除"current"样式

.next().hide(); //它们的下一个元素隐藏

return false;

});

});

/* reset */

body{margin:0;padding:0 0 12px 0;font-size:12px;line-height:22px;font-family:"\5b8b\4f53","Arial Narrow";background:#fff;}

form,ul,li,p,h1,h2,h3,h4,h5,h6{margin:0;padding:0;}

input,select{font-size:12px;line-height:16px;}

img{border:0;}

ul,li{list-style-type:none;}

a {color:#00007F;text-decoration:none;}

a:hover {color:#bd0a01;text-decoration:underline;}

.box {

width: 150px;

margin: 0 auto;

}

.menu{

overflow:hidden;

border-color: #C4D5DF;

border-style: solid;

border-width: 0 1px 1px;

}

/* lv1 */

.menu li.level1 a{

display: block;

height: 28px;

line-height: 28px;

background:#EBF3F8;

font-weight:700;

color: #5893B7;

text-indent: 14px;

border-top: 1px solid #C4D5DF;

}

.menu li.level1 a:hover{text-decoration:none;}

.menu li.level1 a.current{background:#B1D7EF;}

/* lv2 */

.menu li ul{overflow:hidden;}

.menu li ul.level2{display:none;}

.menu li ul.level2 li a{

display: block;

height: 28px;

line-height: 28px;

background:#ffffff;

font-weight:400;

color: #42556B;

text-indent: 18px;

border-top: 0px solid #ffffff;

overflow: hidden;

}

.menu li ul.level2 li a:hover{

color:#f60;

}

$(document).ready(function(){

$(".level2 a").each(function(){

$this = $(this);

if($this[0].href==String(window.location)){

$this.addClass("hover");

}

});

});

21c008cffd9f0721d6b2235a5741057a.gif

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值