欢迎来到福编程网,本站提供各种互联网专业知识!

在Javascript中为String对象添加trim,ltrim,rtrim方法

发布时间:2006-09-22 作者: 来源:转载
利用Javascript中每个对象(Object)的prototype属性我们可以为Javascript中的内置对象添加我们自己的方法和属性。
以下我们就用这个属性来为String对象添加三个方法:Trim,LTrim,RTrim(作用和VbScript中的同名函数一样)
复制代码 代码如下:String.prototype.Trim=function()
{
returnthis.replace(/(^s*)|(s*$)/g,"");
}
String.prototype.LTrim=function()
{
returnthis.replace(/(^s*)/g,"");
}
String.prototype.Rtrim=function()
{
returnthis.replace(/(s*$)/g,"");
}
怎么样,简单吧,下面看一个使用的实例:复制代码 代码如下:

String.prototype.Trim=function()
{
returnthis.replace(/(^s*)|(s*$)/g,"");
}
vars="leadingandtrailingspaces";
window.alert(s+"("+s.length+")");
s=s.Trim();
window.alert(s+"("+s.length+")");

相关推荐