javascript中没有trim这一内置函数,需要自定义: function trim(str){ return str.replace(/(^\s*)|(\s*$)/g, ""); } 调用: val = rim.val;