js中的trim()

去左右空格感觉这样更好些,只作一次替换。
String.prototype.trim = function() {
    return this.replace(/^/s+|/s+$/g, "");
}

你可能感兴趣的:(js中的trim())