选项卡展示

本文详细介绍了一种使用HTML、CSS和jQuery实现的简单而实用的Tab切换效果。通过具体的代码示例,读者可以轻松理解并复制实现。该效果包括按钮的激活状态切换和对应内容的显示隐藏。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

直接上代码

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>Document</title>

<style>

.tab_con{

width:500px;

height:350px;

margin:50px auto 0;

}

.tab_btns{

height:50px;

}

.tab_btns input{

width:100px;

height:50px;

background:#ddd;

border:0px;

outline:none;

}

 

.tab_btns .active{

background:gold;

}

 

.tab_cons{

height:300px;

background:gold;

}

 

.tab_cons div{

height:300px;

line-height:300px;

text-align:center;

display:none;

font-size:30px;

}

 

.tab_cons .current{

display:block;

}

</style>

<script src="js/jquery-1.12.4.min.js"></script>

<script>

$(function(){

var $btn = $('.tab_btns input');

var $div = $('.tab_cons div');

 

$btn.click(function(){

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

 

$div.eq( $(this).index() ).addClass('current').siblings().removeClass('current');

});

});

</script>

</head>

 

<body>

<div class="tab_con">

<div class="tab_btns">

<input type="button" value="按钮一" class="active">

<input type="button" value="按钮二">

<input type="button" value="按钮三">

</div>

<div class="tab_cons">

<div class="current">按钮一对应的内容</div>

<div>按钮二对应的内容</div>

<div>按钮三对应的内容</div>

</div>

</div>

</body>

</html>

 

 

 

效果如下

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值