如何用让 javascript 更智能的截取字符串长度


现在使用的方法比较土鳖,每次都要用下面这句来实现,不知道大家有没有更健壮的方法或者有现成的库可以参考?

if(string.length > 100) {
    string = string.substring(0,100)+"...";
}

长度 JavaScript 字符串

880828 10 years, 5 months ago

提问者其实可以用css来实现这种效果的,这个比任何的js都要好的。代码如下:

.overflowStringContainer{width:300px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;}

text-overflow最初是IE的一个私有属性,现在已经被纳入css3里面,兼容性列表可查看: http://www.zhangxinxu.com/css3/css3-t... ,截至2011.11.7,IE,firefox,Opera,safari,chrome的最新版本已经都完全支持此属性。

折齿的该隐 answered 10 years, 5 months ago

Your Answer