trim()
方法会从一个字符串的两端删除空白字符。在这个上下文中的空白字符是所有的空白字符 (space, tab, no-break space 等) 以及所有行终止符字符(如 LF,CR)。
使用
trim()
方法并不影响原字符串本身,它返回的是一个新的字符串。1
2var orig = ' foo ';
console.log(orig.trim()); // 'foo'
兼容
如果 trim() 不存在,可以在所有代码前执行下面代码1
2
3
4
5if( !String.prototype.trim) {
String.prototype.trim = function () {
return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
};
}