标签:
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的属性的解决方案
原文地址:http://www.cnblogs.com/gongshunkai/p/5859149.html