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

js选项卡效果

时间:2016-05-13 05:21:55      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:选项卡

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>webrx-title</title>
<meta name="keywords" content="关键字">
<meta name="description" content="简介">
<script src="js/jquery-1.8.3.min.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
<script>
$(document).ready(function(){
	$(".tab1").hover(function(){
		$(‘.table3‘).show();
		$(‘.table4‘).hide();
		$(this).css({"background":"#fff","border-bottom":"0"});
		$(‘.tab2‘).css({"background":"#6DCFED"});
		})
	$(".tab2").hover(function(){
		$(‘.table3‘).hide();
		$(‘.table4‘).show();
		$(this).css({"background":"#fff","border-bottom":"0"});
		$(‘.tab1‘).css({"background":"#6DCFED"});
		})
})
</script>
<style>
.tab1,.tab2{background:#6DCFED;border:1px #4298B3 solid;margin-right:10px;padding:5px;border-bottom:0;}
.tab1{background:#fff;}
</style>
</head>

<body>
<div><span class="tab1">选项卡1</span><span class="tab2">选项卡2</span></div>
<div style="width:400px;height:200px;border:1px #909090 solid;margin-top:3px;">
    <div class="table3"><p>1111111111111深呢更环保从女款慢慢</p><p>改变部分规模都放假没发票更麻烦的媒婆法规规模考</p><p>试苹果放蘑菇姐夫给偶个发动更寂寞的股份破开平方的过碰到个空瓶广口瓶开个发票</p></div>
    <div class="table4" style="display:none;"><p>2222222222222222深呢更环保从女款慢慢</p><p>改hgh变部hg分规模都放假没发票更麻烦的hfgh媒婆法规规模考</p><p>试苹果放蘑菇姐夫给偶个发hgjhgj动更寂寞的股jhgj份破开平方hg的过碰到个空瓶广口瓶开个发票</p></div>
</div>
</body>
</html>

运行结果:

技术分享

js选项卡效果

标签:选项卡

原文地址:http://1940817891.blog.51cto.com/9833202/1772486

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