js:去空格 js 去除字符串 空格

<script>

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,   "");  
  }  

</script>

你可能感兴趣的:(字符串)