js空格处理函数

来源:互联网 发布:淘宝网怎么买二手商品 编辑:程序博客网 时间:2024/05/16 04:35

來源:http://www.happyshow.org/view.php?id=114

 

去除字符串左右两端的空格,在vbscript里面可以轻松地使用 trim、ltrim 或 rtrim,但在js中却没有这3个内置方法,需要手工编写。下面的实现方法是用到了正则表达式,效率不错,并把这三个方法加入String对象的内置方法中去。

<input type="text" name="mytxt" value="   12345678    " /><br>
<input type="button" name="cmd1" onclick="mytxt2.value=mytxt.value.trim()" value="去两边的空格"/>
<input type="text" name="mytxt2"/><br>
<input type="button" name="cmd1" onclick="mytxt3.value=mytxt.value.ltrim()" value="去左边的空格"/>
<input type="text" name="mytxt3"/><br>
<input type="button" name="cmd1" onclick="mytxt4.value=mytxt.value.rtrim()" value="去右边的空格"/>
<input type="text" name="mytxt4"/><br>
<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>


写成函数可以这样:

<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>
原创粉丝点击