tab选项卡效果2

源码:

<div class="tab">
<div class="tab_menu">
<ul>
<li class="on">实事</li>
<li>政治</li>
<li>体育</li>
</ul>
</div>
<div class="tab_box">
<div>实事内容</div>
<div>政治内容</div>
<div>体育内容</div>
</div>
</div>

样式:

.tab{width: 300px; margin: 0 auto;}
.tab_menu{width: 300px; height: 30px; border: 1px solid #000;}
.tab_menu li{float: left; width: 99px; height: 30px; line-height: 30px; text-align: center; border-right:1px solid #333; cursor: pointer;}
.tab_menu li:last-child{border-right: none; width: 100px;}
.tab_menu li.on{background-color: #999;}
.tab .box{width: 300px; height: 200px;}
.tab_box > div{width: 300px; height: 200px; border: #333 solid; border-width: 0 1px 1px 1px; display: none;}
.tab_box > div:first-child{display: block;}

脚本:

$(function(){
$(".tab_menu ul li").click(function(){
$(this).addClass("on").siblings().removeClass("on"); //切换选中的按钮高亮状态
var index=$(this).index(); //获取被按下按钮的索引值,index是从0开始的
$(".tab_box > div").eq(index).show().siblings().hide(); //在按钮选中时在下面显示相应的内容,同时隐藏不需要的内容
});
});

效果图:

转载于:https://www.cnblogs.com/DKL01/p/4884252.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值