暂寄一个Javascript去除左右空格的例子,不用浪费时间每次都写.

function Mytrim(szValue)   //去除左右空格
{
    var szBuf,szNew,nLen;
   nLen=szValue.length;
   if ((! szValue) || nLen<1)
       return;
   szNew=szValue
   for (i=0;i<=nLen-1;i++)
   {
       szBuf=szValue.charAt(i);
       if (szBuf!=" ")
           break;
       else 
          szNew=szValue.substr(i+1,nLen-i);
   }
   nLen=szNew.length;
   for (i=nLen-1;i>=0;i--)
   {
       szBuf=szNew.charAt(i);
       if (szBuf!=" ")
           break;
       else 
          szNew=szNew.substr(0,i);
   }
   return(szNew);
}

posted on 2006-11-24 10:57  linbaba  阅读(311)  评论(0编辑  收藏  举报

导航