文章列表
//去两边空格
String.prototype.trim = function(){
return this.replace(/(^\s*)|(\s*$)/g, "");
};
//去所有空格
String.prototype.trimAll = function(){
return this.replace(/(^\s*)|(\s*)|(\s*$)/g, "");
};