1 $(".content").each(function(){ 2 if($(this).text().length>100){ 3 $(this).text($(this).text().substring(0,100)); 4 $(this).html($(this).html()+‘...‘); 5 } 6 })
2022-09-24 20:55:17
1 $(".content").each(function(){ 2 if($(this).text().length>100){ 3 $(this).text($(this).text().substring(0,100)); 4 $(this).html($(this).html()+‘...‘); 5 } 6 })