低版本的ie不支持trim()方法

if(typeof String.prototype.trim !== 'function') {
            String.prototype.trim = function() {
                return this.replace(/^\s+|\s+$/g, ''); 
            }
        }


你可能感兴趣的:(低版本的ie不支持trim()方法)