javascript中去除空格Trim(),LTrim(),RTrim()

来源:互联网 发布:528雾化器绕丝数据 编辑:程序博客网 时间:2024/04/29 09:32
javascript中去除空格Trim(),LTrim(),RTrim()
// Trim() , Ltrim() , RTrim() 函数



String.prototype.Trim = function()
{
return this.replace(/(^/s*)|(/s*$)/g, "");
}s

String.prototype.LTrim = function()
{
return this.replace(/(^/s*)/g, "");
}

String.prototype.RTrim = function()
{
return this.replace(/(/s*$)/g, "");