标准答案!
<script type="text/javascript">
$(".red,.green").html("我的身份很特殊哦!");
var $none = $("#na:hidden").html();
$("#oc").html($none);
$("#oc").css("color","red");
$(function(){
$("#show").click(function(){
var text = $("#show").html();
if(text == "更多"){
$("#show").html("简化");
$("#l5").show();
$("#l6").show();
$("#l7").show();
}else{
$("#show").html("更多");
$("#l5").hide();
$("#l6").hide();
$("#l7").hide();
}
})
})
</script>