How to limit inner text of div to 175 characters?

前端 未结 5 1596
太阳男子
太阳男子 2020-12-24 00:20

I have a div area that has an arbitrary number of characters. I want to limit the amount of characters that show up in there to 175 characters. I mostly found exaple on how

5条回答
  •  既然无缘
    2020-12-24 00:28

    I just did this for one of my projects. I found this great plugin.

    $('some-area').expander({
        slicePoint:175
    });
    

提交回复
热议问题