1. 程式人生 > >IE8 相容JS trim() 解決方案

IE8 相容JS trim() 解決方案

overwrite javascript trim() method:
/*
 *javascript trim()  repair bug.
 */
String.prototype.trim = function() {
    return this.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}