function String.prototype.Trim() { return this.replace(/(^\s*)|(\s*$)/g, ""); }
详细解决方案
js 除开前后空格
热度:550 发布时间:2012-09-02 21:00:34.0
function String.prototype.Trim() { return this.replace(/(^\s*)|(\s*$)/g, ""); }
相关解决方案