判断字符串是否有空格' '或其他等

2017-12-13  本文已影响0人  xiaoaiai
const str = '  abc  def   '
const newStr = str.trim()
console.log(newStr)  //  'abc def' [去掉了前后空格]
const str = '   abc  def   '
if (str.indexOf(' ') !== -1) console.log('str中有空格')   // indexOf(' ') === -1的时候说明  没有空格' '
上一篇下一篇

猜你喜欢

热点阅读