文字溢出省略号表示

$(document).ready(function(){ //限制字符个数

  $(".text_overflow_5").each(function(){

    var maxwidth=16;

    if($(this).text().length>maxwidth){

      $(this).text($(this).text().substring(0,maxwidth));

      $(this).html($(this).html()+'...');

     }

  });

});

参考文档:http://www.zhangxinxu.com/study/200909/text-overflow-ellipsis-so-on.html

原文地址:https://www.cnblogs.com/mk2016/p/5900560.html