码迷,mamicode.com
首页 > Web开发 > 详细

js怎么去空格

时间:2015-05-25 11:31:20      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:js   html   js怎么去空格   

写成类的方法格式如下:(str.trim();)
<script language="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,"");
 }
</script>
写成函数可以这样:(trim(str))
<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>

js怎么去空格

标签:js   html   js怎么去空格   

原文地址:http://blog.csdn.net/agonie201218/article/details/45967159

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!