js 去除字符串空格2018-12-26 本文已影响0人 hi文邵 str.replace(/\s/g,"") 例如:var str = '12 3' console.log(str.replace(/\s/g,"")) // 结果为 123