Jandren

  博客园 :: 首页 :: 新随笔 :: 联系 :: :: 管理 ::

<script type="text/javascript">  
    String.prototype.Trim = function(){return this.replace(/(^\s*)|(\s*$)/g,"");} 
    String.prototype.LTrim = function(){return this.replace(/(^\s*)/g,"");}  
    String.prototype.RTrim = function(){return this.replace(/(\s*$)/g,"");}
    var str="  abc  cd  ";
    var Lstr="  abc  cd  ";
    var Rstr="  abc  cd  "; 
    str=str.Trim();
    Lstr=Lstr.LTrim();
    Rstr=Rstr.RTrim();
    window.document.write("*"+str+"*"+"<br>");
    window.document.write("*"+Lstr+"*"+"<br>");
    window.document.write("*"+Rstr+"*"+"<br>");
</script>

posted on 2010-07-05 09:19  Jandren  阅读(249)  评论(0)    收藏  举报