js选项卡效果

时间:2021-05-12 06:24:06
<!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选项卡效果