浏览器提示: Message: Object doesn't support this property or method
12345678_0001
浏览 107回答 2
2回答
交互式爱情
因为 IE 不支持trim()啊。来试试 Mozilla 给的方法吧,把下面这个代码放在调用 trim 之前来解决兼容性问题吧if(!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^\s+|\s+$/g,'');
};
}