html选项卡jq,jQuery实现选项卡功能(两种方法)

效果图:

3331dbbeb960c14c120ff8172315b4e1.png

代码如下:

JQuery 源码分析

#div1 div{width: 200px;height: 200px;border: 1px solid #FF0000;display: none;}

.active{background: red;}

*{margin: 0;padding: 0;}

.tab:after{content: '';display: block;clear: both;}

.tab li{width: 150px;height: 30px;line-height: 30px;text-align: center;cursor: pointer;list-style: none;float: left;margin: 0 10px;background: #ABCDEF;border-radius: 5px;}

.tab li.active{background: #000;color:#fff;}

.content:after{content: '';display: block;clear: both;}

.content li{width: 460px;height: 300px;padding:20px;background: #f7f7f7;display: none;}

11111111111
22222222222
333333333333
  • 1
  • 2
  • 3
  • 111111111111
  • 222222222222
  • 333333333333

$(function(){

//jQuery 方法一

$('#div1').find('input').click(function(){

$('#div1').find('input').attr('class','');

$('#div1').find('div').css('display','none')

$(this).attr('class','active');

$('#div1').find('div').eq($(this).index()).css('display','block');

});

//jQuery 方法二

$('.tab').find('li').click(function(){

var index = $(this).index();

$(this).addClass('active').siblings().removeClass('active');

$('.content').find('li').eq(index).show().siblings().hide();

})

})

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值