摘要: 去重 去空 String.prototype.trim=function(){ return this.replace(/(^\s+)|(\s+$)g,'') } str.trim() function trim(str){ return str.replace(/(^\s+)|(\s+$)/g,' 阅读全文