1.正则去空字符串; var str1=" a b c "; var strtrim=str1.replace(/\s/g,""); 2.js去前后空字符串;var strtrim=str1.trim(); 3.jQuery去前后空字符串; var strtrim= $.trim(str1);