当前位置: 代码迷 >> JavaScript >> javascript中除开空格
  详细解决方案

javascript中除开空格

热度:466   发布时间:2013-09-30 09:50:49.0
javascript中去掉空格
<script language=Javascript> //自己动手为string添加Trim
function String.prototype.Trim() {return this.replace(/(^\s*)|(\s*$)/g,"");}
function String.prototype.Ltrim(){return this.replace(/(^\s*)/g, "");}
function String.prototype.Rtrim(){return this.replace(/(\s*$)/g, "");}
var str = " aaa ";
alert(str.Trim());
</script>

0 - 去除前后空格; 1 - 去前导空格; 2 - 去尾部空格
  相关解决方案