摘要: // 清除两边的空格 String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ''); }; // 合并多个空白为一个空白 String.prototype.ResetBlank = function() 阅读全文
posted @ 2022-03-17 20:00 LeXiner 阅读(179) 评论(0) 推荐(0)