let str = ' he llo '
str.trim() // 去掉首尾的空格 ‘he llo’
str.trimStart() // 去掉开头的空格 'hel lo '
str.trimEnd() // 去掉结尾的空格 ' he llo'
str.replace(/\s+/g, ' ') // 去掉所有空格 'hello'
let str = ' he llo '
str.trim() // 去掉首尾的空格 ‘he llo’
str.trimStart() // 去掉开头的空格 'hel lo '
str.trimEnd() // 去掉结尾的空格 ' he llo'
str.replace(/\s+/g, ' ') // 去掉所有空格 'hello'
本文标题:用户名输入删掉开头结尾的空格
本文链接:https://www.haomeiwen.com/subject/sedgwhtx.html
网友评论