请求一个关于html tab的代码,要求是当鼠标进到tab时,才会出现选项卡的那种,谢谢各位大大的帮忙

我是想要做一个tab... 我是想要做一个tab 展开
 我来答
言言言小鱼

推荐于2016-04-06 · 小小的鱼儿小小的我,我就是言小鱼。
言言言小鱼
采纳数:1335 获赞数:7608

向TA提问 私信TA
展开全部
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<style>
*{ margin:0;padding:0; }
.title{ border:1px solid green;width:250px; }
.content{ border:1px solid red;width:250px;height:200px; }
span{ padding:0 10px;cursor:pointer; }
.active{ color:#ff0000; }
</style>
</head>
<body>
<div class="title">
<span class="active">标题一</span>
<span>标题二</span>
<span>标题三</span>
</div>
<div class="content">
    <div class="con">这里是内容一</div>
    <div class="con">这里是内容二</div>
    <div class="con">这里是内容三</div>
</div>
<script type="text/javascript">
$(function(){
$('.con:gt(0)').hide();
$('span').on('click',function(){
var index = $(this).index();
$(this).addClass('active').siblings().removeClass('active');
$('.con').eq(index).show().siblings().hide();
});
});
</script>
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式