还行吧 对方水电费公司
<body>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li style="display:none">4</li>
<li>5</li>
<li style="display:none">6</li>
<li>7</li>
<a href="#">更多</a>
</ul>
<script type="text/javascript">
$("a").bind('click',function(){
if($("a").html() == "更多"){
$("a").html("简化");
$("li").show();
}else{
$("a").html("更多");
$("li:eq(3)").hide();
$("li:eq(5)").hide();
$("li:last").show();
}
});
</script>
</body>