四行代码编写出选项卡效果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>选项卡</title>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<style type="text/css">
*{
	padding:0px;
	margin:0px auto;
}
body{
	padding:0px;
	margin:0px auto;
	font-size:12px;
}
#xuan{
	border:#ccc solid 1px;
	width:200px;
	height:180px;
	margin-top:5px;
	display:block;
}
.top{
	height:28px;
	line-height:28px;
	background-color:#f5f5f5;
	border-bottom:#e2e2e2 solid 1px;
}
.top ul{
	list-style:none;
	padding:0px;
	margin:0px;
}
.top li{
	margin:0px;
	padding:0px 4px;
	text-align:center;
	float:left;
	cursor:pointer;
}
.top li.active{
	background-color:#fff;
	color:#06c;
	border-right:#e2e2e2 solid 1px;
}
.ht{
	width:188px;
	height:158px;
}
.z01,.z02{
	height:152px;
	text-align:left;
	padding:2px;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
    $("ul>li").bind("click",function(){
         $("#ht>div").hide();
         $("#ht>div:eq("+$("ul>li").index($(this))+")").show();
         $("ul li").removeClass("active");
         $(this).addClass("active");
    }) 
	 
});
</script>
</head>

<body>
<div id="xuan">
<div class="top">
<ul>
<li class="active" tag="01">某卡科技</li><li tag="02">上海科技</li><li tag="03">谷歌科技</li>
</ul>
</div>
<div id="ht">
<div class="z01" style="display:block" tag="01">杭州某卡科技</div>
<div class="z02" style="display:none" tag="02">上海神州技术</div>
<div class="z02" style="display:none" tag="03">中国谷歌科技</div>
</div>
</div>
</body>
</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值