so easy
<script>
var hiddenLis = $("li[style='display:none']");
$("a").click(function(){
if($("a").html() === "更多"){
hiddenLis.show();
$("a").html("简化");
} else {
hiddenLis.hide();
$("a").html("更多");
}
});
</script>
<script>
var hiddenLis = $("li[style='display:none']");
$("a").click(function(){
if($("a").html() === "更多"){
hiddenLis.show();
$("a").html("简化");
} else {
hiddenLis.hide();
$("a").html("更多");
}
});
</script>
2015-06-14
举报