<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script src="jquery-1.9.1.js"/></script>
<style>
div{margin:0;padding:0;184px;height:200px;border:1px solid #ccc;display:none;}
.tab{margin:0;padding:0;list-style:none;200px;overflow:hidden;}
.tab li{float:left;60px;height:30px;background:#ccc;color:#fff;border:1px solid red; text-align:center;line-height:30px;cursor:pointer; }
.on{display:block;}
.tab li.cur{background:blue;}
</style>
<script>
window.onload=function(){
$(document).ready(function(){
$(".tab li").click(function(){
$(".tab li").eq($(this).index()).addClass("cur").siblings().removeClass('cur');
$("div").hide().eq($(this).index()).show();
//另一种方法: $("div").eq($(".tab li").index(this)).addClass("on").siblings().removeClass('on');
});
})
};
</script>
</head>
<body>
<ul class="tab">
<li>最新</li>
<li class="cur">热门</li>
<li>新闻</li>
</ul>
<div>11</div>
<div class="on">22</div>
<div>33</div>
</body>
</html>