去掉字符串两端空格
function trim(str){ return str.replace(/^\s+|\s+$/g,"");}
去掉字符串中的所有空格
function trim(str){ return str.replace(/[ ]/g,""); }