我在ie8中遇到一个数组对象的脚本错误。 错误是:“对象不支持属性或方法'indexOf'
任何人都有关于如何最好地解决ie8的想法或信息?
由于
var arr = new Array();
Array.prototype.remove = function() {
var what, a = arguments, L = a.length, ax;
while (L && this.length) {
what = a[--L];
while ((ax = this.indexOf(what)) !== -1) {
this.splice(ax, 1);
}
}
return this;
};