/*显示其余1件*/ $(function(){ $("body").on("click",".show_btn",function(){ if(($(this).prev()).is(":visible")){ $(this).prev().slideUp().end().find("span").text("显示其余1件"); }else{ $(this).prev().slideDown().end().find("span").text("收起其余1件"); } }); });