jquery自带了trim方法:$.trim(" abc ") // abc自己写方法:function trim(str) { return str.replace(/(^\s+)|(\s+$)/g, "");}trim(" abc ") // =abc