怎么实现CSS限制字数,超出部份显示点点点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么实现CSS限制字数,超出部份显示点点点相关的知识,希望对你有一定的参考价值。
参考技术A 在样式中加上overflow: hidden; text-overflow: ellipsis; white-space: nowrap;overflow: hidden;内容超出div部分隐藏
text-overflow: ellipsis;文本溢出包含元素显示省略符号来代表被修剪的文本
white-space: nowrap;文本不会换行
jquery字数限制超出显示...,原有内容在title中显示
为标签添加class = sliceFont;添加data-num属性为要显示的字数,截取后会在title中显示原有字符串;
$(‘.sliceFont‘).each(function(index, el) { var num = $(this).attr(‘data-num‘); var text = $(this).text(); var len = text.length; $(this).attr(‘title‘,$(this).text()); if(len > num){ $(this).html(text.substring(0,num) + ‘...‘); } });
以上是关于怎么实现CSS限制字数,超出部份显示点点点的主要内容,如果未能解决你的问题,请参考以下文章