空字符包括:空格、制表符、换页符、回车符和换行符。
示例
下面代码使用 trim() 方法快速清除掉字符串首尾空格。var s = " abc def \r\n "; s = s.trim(); console.log("[" + s + "]"); //[abc def] console.log(s.length); //7
var s = " abc def \r\n "; s = s.trim(); console.log("[" + s + "]"); //[abc def] console.log(s.length); //7