复制代码 代码如下: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+")");