常用js方法留存

1、去空格

      function String.prototype.Trim() { return this.replace(/(^/s*)|(/s*$)/g, ""); }   // 去掉左右空格

      function String.prototype.Ltrim() { return this.replace(/(^/s*)/g, ""); }            // 去掉左空格
      function String.prototype.Rtrim() { return this.replace(/(/s*$)/g, ""); }            // 去掉右空格

猜你喜欢

转载自kobj.iteye.com/blog/1886874