<!DOCTYPE html>
<html>
<head>
<title>zuizhong</title>
<meta charset="utf-8">
<style type="text/css">
*{margin:0px;padding:0px;}
ul{list-style:none;height:30px;line-height:30px;border-bottom:2px saddlebrown solid;width:300px;}
ul li{background:#fff;cursor:pointer;float:left;list-style:none;height:28px;line-height:28px;margin:0px 3px;border:1px solid #aaaaaa;border-bottom:none;width:60px;text-align: center;display:inline-block;}
.on{
border-top:2px solid saddlebrown;border-bottom: 2px solid #fff;
}
div{height:120px;line-height: 25px;border:1px solid #336699;border-top:none;padding:5px;width:290px;}
.hide{display:none;}
</style>
<script type="text/javascript">
var mm=document.getElementById('uu');
var nn=mm.getElementsByTagName('li');
var ss=document.getElementsByTagName('div');
for(var i=0;i<nn.length;i++)
{
nn[i].index=i;
nn[i].onclick=function()
{
for(var j=0;j<nn.length;j++)
{
nn[i].className="";
ss[j].className="hide";
}
this.className="on";
ss[this.index].className=""
}
}
</script>
</head>
<body>
<ul id="uu">
<li class="on">房产</li>
<li>家居</li>
<li>二手房</li>
</ul>
<div>275万购昌平邻铁三居 总价20万买一居<br>
200万内购五环三居 140万安家东三环<br>
北京首现零首付楼盘 53万购东5环50平</br>
京楼盘直降5000 中信府 公园楼王现房</div>
<div class="hide"> 40平出租屋大改造 美少女的混搭小窝
经典清新简欧爱家 90平老房焕发新生
新中式的酷色温情 66平撞色活泼家居
瓷砖就像选好老婆 卫生间烟道的设计</div>
<div class="hide">通州豪华3居260万 二环稀缺2居250w甩
西3环通透2居290万 130万2居限量抢购
黄城根小学学区仅260万 121平70万抛!
独家别墅280万 苏州桥2居优惠价248万
</div>
</body>
</html>
2个问题,第一个js代码放到<body>最后或者加上window.onload;第二个在for里面nn[i].className="";的这里i也要用 this.index