字符串截取长度显示省略号...

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 + "...";

}

posted @ 2016-10-20 11:52  junjunzhou  阅读(1124)  评论(0编辑  收藏  举报