在javascript中的string对象没有trim方法,所以trim功能需要自己实现:
代码如下:
使用如下
代码如下:
﹤scriptlanguage=”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﹥使用如下
﹤scripttype=”text/javascript”﹥
alert(document.getElementById(’abc’).value.trim());
alert(document.getElementById(’abc’).value.ltrim());
alert(document.getElementById(’abc’).value.rtrim());
﹤/script﹥
本文介绍如何在JavaScript中为String对象扩展自定义的trim方法,包括去除字符串两端、左侧及右侧空白的功能,并提供示例代码。
1898

被折叠的 条评论
为什么被折叠?



