码迷,mamicode.com
首页 > Web开发 > 详细

jquery实现tab页切换显示div

时间:2015-08-16 21:14:10      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

1.jQuery实现tab切换显示代码实现

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>tab页效果</title>
<script type="text/javascript" src="jquery-1.8.3.js"></script>
<style type="text/css">
.wrap{border: 1px solid #eee;min-width: 400px; min-height: 400px;}
.tab span{border: 1px solid #ccc;width: 100px;height: 30px;padding-left:0px;margin: 10PX 10PX;}
.info{border: 1px dashed  	#006400 ;margin: 20px 0px;}
.h30{height: 30px;}
.huangse{background-color:#FFFF00 ;}
.qianlv{background-color: #F5FFFA ;}
</style>
</head>
<body>
<!-- tab页切换开始-->
<div class="wrap">
<div class="h30"></div>
<!-- tab切换源start -->
<div class="tab">
<span class="huangse">中文版tab</span>
<span class="">英文版tab</span>
<span class="">韩语版tab</span>
</div>
<!-- tab切换源end -->
<!-- 切换显示start -->
<div class="info">
<p>1.info one</p>
<p>2.中文版</p>
</div>
<div class="info" style="display: none">
<p>1.info two</p>
<p>2.英文版</p>
</div>
<div class="info" style="display: none">
<p>1.info three</p>
<p>2.韩语版</p>
</div>
<!-- 切换显示end -->
</div>
<!-- tab页切换结束-->
</body>
<script type="text/javascript">
$(function(){
/****遍历*****/
$(".wrap").find(".tab span").each(function(index,element){
/****绑定事件*******/
$(this).mousemove(function(e){
/****触发事件的显示控制****/
$(this).addClass("huangse").siblings().removeClass();
$(this).parent().parent().find(".info").eq(index).show().siblings(".info").hide();
})
})
})
</script>
</html>

 2.效果展示图

技术分享

技术分享

技术分享

 

jquery实现tab页切换显示div

标签:

原文地址:http://www.cnblogs.com/shell-blog/p/4734968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!