//用正则表达式将前后空格 用空字符串替代。
String.prototype.trim = function(){
return this.replace(/(^\s*)|(\s*$)/g, "");
}

 posted on 2011-08-23 23:58  麦田J  阅读(152)  评论(0编辑  收藏  举报