js代码
<script> $(function(){ $(".biji-content").hide(); //按钮点击事件 $("button").click(function(){ var txts = $(this).parents("li"); if ($(this).text() == "展开"){ $(this).text("收起"); txts.find(".biji-tit").hide(); txts.find(".biji-content").show(); }else{ $(this).text("展开"); txts.find(".biji-tit").show(); txts.find(".biji-content").hide(); } }) }); </script>