Ellipsis in the middle of a text (Mac style)

后端 未结 15 2270
长情又很酷
长情又很酷 2020-11-29 03:04

I need to implement ellipsis (\"...\") in the middle of a text within a resizable element. Here is what it might look like. So,

\"Lorem ipsum do         


        
15条回答
  •  感动是毒
    2020-11-29 03:15

    Here's the shortest bit I could find which replaces 3 characters in the middle with ....

    function shorten(s, max) {
      return s.length > max ? s.substring(0, (max / 2) - 1) + '...' + s.substring(s.length - (max / 2) + 2, s.length) : s
    }
    

提交回复
热议问题