IE 浏览器下使用 trim() 函数报错
使用的是 IE 8,执行如下代码:
var say = " hello "; say = say.trim();
浏览器提示:
Message: Object doesn't support this property or method
在非IE浏览器下没有发现问题,是什么原因如何解决呢?
baga10
10 years, 8 months ago
Answers
因为 IE 不支持
trim()
啊。
来试试 Mozilla 给的方法吧,把下面这个代码放在调用 trim 之前来解决兼容性问题吧
if(!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^\s+|\s+$/g,''); }; }
一直很冲动
answered 10 years, 8 months ago