JS限制内容显示多少个字符

    //$(".comment_txt").each(function(){
           var len=$('#text').text().length;
           if(len>75){
               var str="";
               str=$('#text').text().substr(0,75)+"…<span>全文</span>";//限制75个字符
               $('#text').html(str);
           }
        //});
        $(".comment_txt_box span").each(function(){
            $(this).click(function(){
                $(this).parent('.comment_txt_box').next().show();
                $(this).parent('.comment_txt_box').remove();
            })
        });

 

posted @ 2021-08-26 12:14  十三月凉  阅读(483)  评论(0编辑  收藏  举报
/* 看板娘 */