function trim(str) { if (str && typeof str === "string") { // 去除前后空白符 return str.replace(/(^s*)|(s*)$/g,""); } }