div 超过10条隐藏 带有展开隐藏按钮

var sum = $("#dmcode .index").length;
var heightAll = 30*(sum-10);
if(sum>10){
$("#dmcode .index").eq(9).nextAll().hide();
$("#show").show();
}else{
   $("#show").hide();
}
$("#show").click(function(){
var typeheight=0;
if ($("#show span").hasClass("down")==true){ 
$("#show span").attr("class","up");
$("#show span").html("收起");
$("#dmcode .index").show();
}else{ 
$("#show span").attr("class","down");
$("#show span").html("展开");
$("#dmcode .index").eq(9).nextAll(".index").hide();
$("#show").show();
}
});

你可能感兴趣的:(前端js)