弄得有点久啊
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
ul{
list-style:none;
border-bottom:2px solid tomato;
width:206px;
left:10px;
padding:0px;
}
ul li{
display:inline-block;
border:2px solid blue;
border-bottom:none;
margin:0px 3px;
left:5px;
list-style: none;
}
.change{
border-top:2px solid tomato;
border-bottom:2px solid #fff;
margin:-3px 3px;
}
.sheet1{
border:3px solid blueviolet;
border-top:none;
height:200px;
width:200px;
margin-top:-16px;
position:absolute;
}
.hide{display:none;}
</style>
<body>
<ul>
<li class='change'> 房产</li>
<li> 家居</li>
<li> 二手房</li>
</ul>
<div class='sheet1'>275万购昌平邻铁三居 总价20万买一居
200万内购五环三居 140万安家东三环
北京首现零首付楼盘 53万购东5环50平
京楼盘直降5000 中信府 公园楼王现房</div>
<div class='sheet1 hide'>40平出租屋大改造 美少女的混搭小窝
经典清新简欧爱家 90平老房焕发新生
新中式的酷色温情 66平撞色活泼家居
瓷砖就像选好老婆 卫生间烟道的设计</div>
<div class='sheet1 hide'>通州豪华3居260万 二环稀缺2居250w甩
西3环通透2居290万 130万2居限量抢购
黄城根小学学区仅260万 121平70万抛!
独家别墅280万 苏州桥2居优惠价248万</div>
</body>
<script>
var biaoge=document.getElementsByTagName('ul')[0];
var liebiao=biaoge.getElementsByTagName('li');
var mianer=document.getElementsByTagName('div');
for(var i=0,len=liebiao.length;i<len;i++){
liebiao[i].index=i;
liebiao[i].onclick=function(){
for(var n=0;n<len;n++){
liebiao[n].className='';
mianer[n].className='hide';
}
this.className='change';
mianer[this.index].className='sheet1';
}
}
</script>
</html>