标签:
前后去空格
return str.replace(/(^\s*)|(\s*$)/g, "");
全部去空格
$("#panelbody").text().replace(/\s/g, "")
js 去掉前后空格
原文地址:http://www.cnblogs.com/CyLee/p/5558500.html