包括indexOf对Array.prototype的修复会导致jQuery 1.10中出现语法错误

时间:2013-09-16 18:12:07

标签: javascript jquery internet-explorer-8

我正在尝试为早于IE9的浏览器实现ECMA262-5数组方法indexOf。到目前为止,我正在使用jQuery 1.10.2,我在自己的jQuery插件中有这个代码:

if($.support.opacity === false) {
    $.getScript(iptPluginUIFFront.location + 'js/ie8.js');
}

ie8.js有以下代码,我是从here获得的。

'use strict';

// Add ECMA262-5 method binding if not supported natively
//
if (!('bind' in Function.prototype)) {
    Function.prototype.bind= function(owner) {
        var that= this;
        if (arguments.length<=1) {
            return function() {
                return that.apply(owner, arguments);
            };
        } else {
            var args= Array.prototype.slice.call(arguments, 1);
            return function() {
                return that.apply(owner, arguments.length===0? args : args.concat(Array.prototype.slice.call(arguments)));
            };
        }
    };
}

// Add ECMA262-5 string trim if not supported natively
//
if (!('trim' in String.prototype)) {
    String.prototype.trim= function() {
        return this.replace(/^\s+/, '').replace(/\s+$/, '');
    };
}

// Add ECMA262-5 Array methods if not supported natively
//
if (!('indexOf' in Array.prototype)) {
    Array.prototype.indexOf= function(find, i /*opt*/) {
        if (i===undefined) i= 0;
        if (i<0) i+= this.length;
        if (i<0) i= 0;
        for (var n= this.length; i<n; i++)
            if (i in this && this[i]===find)
                return i;
        return -1;
    };
}
if (!('lastIndexOf' in Array.prototype)) {
    Array.prototype.lastIndexOf= function(find, i /*opt*/) {
        if (i===undefined) i= this.length-1;
        if (i<0) i+= this.length;
        if (i>this.length-1) i= this.length-1;
        for (i++; i-->0;) /* i++ because from-argument is sadly inclusive */
            if (i in this && this[i]===find)
                return i;
        return -1;
    };
}
if (!('forEach' in Array.prototype)) {
    Array.prototype.forEach= function(action, that /*opt*/) {
        for (var i= 0, n= this.length; i<n; i++)
            if (i in this)
                action.call(that, this[i], i, this);
    };
}
if (!('map' in Array.prototype)) {
    Array.prototype.map= function(mapper, that /*opt*/) {
        var other= new Array(this.length);
        for (var i= 0, n= this.length; i<n; i++)
            if (i in this)
                other[i]= mapper.call(that, this[i], i, this);
        return other;
    };
}
if (!('filter' in Array.prototype)) {
    Array.prototype.filter= function(filter, that /*opt*/) {
        var other= [], v;
        for (var i=0, n= this.length; i<n; i++)
            if (i in this && filter.call(that, v= this[i], i, this))
                other.push(v);
        return other;
    };
}
if (!('every' in Array.prototype)) {
    Array.prototype.every= function(tester, that /*opt*/) {
        for (var i= 0, n= this.length; i<n; i++)
            if (i in this && !tester.call(that, this[i], i, this))
                return false;
        return true;
    };
}
if (!('some' in Array.prototype)) {
    Array.prototype.some= function(tester, that /*opt*/) {
        for (var i= 0, n= this.length; i<n; i++)
            if (i in this && tester.call(that, this[i], i, this))
                return true;
        return false;
    };
}

我在IE10的IE8浏览器模式下测试IE8的行为。它给出了以下错误:

SCRIPT5022: Syntax error, unrecognized expression: #function(find, i /*opt*/) {
        if (i===undefined) i= 0;
        if (i<0) i+= this.length;
        if (i<0) i= 0;
        for (var n= this.length; i<n; i++)
            if (i in this && this[i]===find)
                return i;
        return -1;
    } 
jquery.js, line 4 character 15704

我想这与jQuery本身有关,或者它只是IE10的IE8浏览器模式中的一个错误。任何帮助都非常感谢。

PS:我试图只使用indexOf方法而不是上面列出的所有方法。但那返回了相同的错误。另外,考虑到jQuery 1.10.2可能有它自己的indexOf实现,我离开了代码并尝试在数组上使用indexOf。但它在IE8中失败了(就像它应该的那样)。

另外请考虑使用jQuery.inArray对我来说不是一个选项(当然除非我被迫),因为我使用位置绝对验证引擎,在许多情况下反过来使用indexOf。

更新

看起来,错误基本上来自未公开的jQuery版本1.10.2的第1850行。它具有以下代码:

Sizzle.error = function( msg ) {
    throw new Error( "Syntax error, unrecognized expression: " + msg );
};

0 个答案:

没有答案