首页 > 代码库 > ie 7/8不支持trim的属性的解决方案

ie 7/8不支持trim的属性的解决方案

if(!(‘trim‘ in String.prototype)){    String.prototype.trim = function(){        return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,‘‘);    }}

console.log(‘(‘ + ‘ aaa ‘.trim() + ‘)‘);

ie 7/8不支持trim的属性的解决方案