欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

DIV 多行显示文字 超出字符数 用省略号代替 博客分类: Web前端之js div多行显示文字超出字符数用省略号代替 

程序员文章站 2024-03-16 12:29:10
...

<script>
function csubstr(str,len){
if(str.length>10){
return str.substring(0,len)+"...";
}else{
return str;
}
}
</script>

 

<div ><script>document.write(csubstr("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",10));</script></div>

 

 

注:不是超出DIV宽度 而是设定字符数 超出字符数省略号代替

用css方法:

(<style type="text/css">.text {width:60px; height:22px;line-height:22px; white-space: nowrap;text-overflow:ellipsis; overflow:hidden; word-wrap: break-word;}</style>)