js|js 去除字符串空格

str.replace(/\s/g,"")
例如:var str = '123'
【js|js 去除字符串空格】console.log(str.replace(/\s/g,""))// 结果为 123

    推荐阅读