js 去除字符串左右两端的空格

时间:2023-11-26 13:09:20

<script type="text/javascript">
   function trim(str){ //删除左右两端的空格
       return str.replace(/(^\s*)|(\s*$)/g, "");
   }

   function ltrim(str){ //删除左边的空格
       return str.replace(/(^\s*)/g,"");
   }

   function rtrim(str){ //删除右边的空格
       return str.replace(/(\s*$)/g,"");
   }
 </script>