文字溢出省略号表示

$(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

posted @ 2016-09-23 16:28  honely1314  阅读(125)  评论(0编辑  收藏  举报