前后去空格
return str.replace(/(^\s*)|(\s*$)/g, "");
全部去空格
$("#panelbody").text().replace(/\s/g, "")
本文共 144 字,大约阅读时间需要 1 分钟。
前后去空格
return str.replace(/(^\s*)|(\s*$)/g, "");
全部去空格
$("#panelbody").text().replace(/\s/g, "")
转载于:https://www.cnblogs.com/CyLee/p/5558500.html