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