大叔爱吃猕猴桃 实现一个方法,清除字符串前后的空格。 function trim(str) { if (str & typeof str === "string") { return str.replace(/(^s*)|(s*)$/g,""); //去除前后空白符 } }