日期:2014-05-16 浏览次数:20416 次
//去除字符串首尾 空格 String.prototype.trim=function(){ return this.replace(/(^\s*)|(\s*$)/g,""); }