字符串截取长度显示省略号...
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串截取长度显示省略号...相关的知识,希望对你有一定的参考价值。
function cutstr(str ,len){
var temp,
icount = 0,
patrn =/[^\x00-\xff]/,
strre = "";
for(var i = 0; i< str.length; i++){
if(icount < len -1){
temp = str.substr(i,1);
if(patrn.exec(temp) == null) {
icount = icount + 1;
}else{
icount= icount +2;
}
strre += temp;
}else{
break;
}
}
return strre + "...";
}
以上是关于字符串截取长度显示省略号...的主要内容,如果未能解决你的问题,请参考以下文章