//202210 CJS 如果不存在trim函数(部分IE),则手动追加属性 if (typeof String.prototype.trim === 'undefined') { String.prototype.trim = function () { return this.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); }; } else { //alert("存在") }
标签:trim,String,前后,replace,空格,字符串,prototype From: https://www.cnblogs.com/Ma-YuHao/p/17174381.html