标签:
String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); }
去除空格
原文地址:http://www.cnblogs.com/camille666/p/delete_space.html