美文网首页
超过xx长度的字符串加省略号

超过xx长度的字符串加省略号

作者: _请输入昵称 | 来源:发表于2019-01-10 10:40 被阅读0次
    function overflowText(str) {
      if (str.replace(/[\u0391-\uFFE5]/g, 'xx').length > 20) {
         return  str.substring(0, 20) + '...'
      }
    }
    

    相关文章

      网友评论

          本文标题:超过xx长度的字符串加省略号

          本文链接:https://www.haomeiwen.com/subject/wgmorqtx.html