วิธีแก้ไข Array indexOf () ใน JavaScript สำหรับเบราว์เซอร์ Internet Explorer


295

หากคุณทำงานกับ JavaScript ได้ทุกเวลาคุณจะทราบว่า Internet Explorer ไม่ใช้ฟังก์ชัน ECMAScript สำหรับ Array.prototype.indexOf () [รวมถึง Internet Explorer 8] ไม่ใช่ปัญหาใหญ่เพราะคุณสามารถขยายการทำงานบนหน้าของคุณด้วยรหัสต่อไปนี้

Array.prototype.indexOf = function(obj, start) {
     for (var i = (start || 0), j = this.length; i < j; i++) {
         if (this[i] === obj) { return i; }
     }
     return -1;
}

ฉันควรใช้สิ่งนี้เมื่อใด

ฉันควรห่อมันลงบนทุกหน้าของฉันด้วยการตรวจสอบต่อไปนี้ซึ่งจะตรวจสอบว่ามีฟังก์ชั่นต้นแบบอยู่หรือไม่ถ้าไม่ไปข้างหน้าและขยายต้นแบบ Array?

if (!Array.prototype.indexOf) {

    // Implement function here

}

หรือตรวจสอบเบราว์เซอร์และถ้าเป็น Internet Explorer เพียงแค่ติดตั้งหรือไม่

//Pseudo-code

if (browser == IE Style Browser) {

     // Implement function here

}

ที่จริงArray.prototype.indexOfไม่ได้เป็นส่วนหนึ่งของ ECMA-262 / ECMAScript ดูecma-international.org/publications/files/ECMA-ST/ECMA-262.pdfบางทีคุณอาจจะกำลังคิดString.prototype.indexOf...
Crescent สด

5
มันเป็นส่วนเสริมไม่ใช่ส่วนหนึ่งของมาตรฐานดั้งเดิม อย่างไรก็ตามควรนำมาใช้เป็นส่วนหนึ่งของ Javascript 1.6 (ซึ่ง IE ไม่สามารถทำได้) developer.mozilla.org/en/New_in_JavaScript_1.6
Josh Stodola

1
@ Josh: ก็แค่หมายถึง "IE ไม่ใช้ฟังก์ชั่น ECMAScript ..."
Crescent สด

4
การใช้งานของคุณArray.indexOfจะไม่นำดัชนีเริ่มต้นติดลบมาพิจารณา ดูคำแนะนำการใช้งานช่องว่างหยุดของ Mozilla ได้ที่นี่: developer.mozilla.org/en/JavaScript/Reference/Global_Objects/…
nickf

3
ฉันได้อัปเดตคำถามเพื่อใช้ "===" เพราะฉันกังวลว่าคนจะคัดลอกด้วย "==" และนั่นอาจจะผิด - นอกเหนือจากนั้นก็ใช้ได้ ดูคำตอบของ Eli Grey
joshcomley

คำตอบ:


213

ทำแบบนี้ ...

if (!Array.prototype.indexOf) {

}

ในฐานะที่เป็นความเข้ากันได้รับการแนะนำโดย MDC

โดยทั่วไปโค้ดตรวจจับเบราว์เซอร์นั้นไม่มีขนาดใหญ่


ฉันมีตัวแทนไม่เพียงพอที่จะแก้ไขคำถาม แต่อย่าลังเลที่จะลบศัพท์แสง ECMAScript และแทนที่ด้วยถ้อยคำที่เหมาะสม ขอขอบคุณอีกครั้ง
Bobby Borszich

12
ระวังถ้าคุณใช้การตรวจจับชนิดนี้ ห้องสมุดอื่นอาจใช้งานฟังก์ชั่นนี้ก่อนที่คุณจะทดสอบและมันอาจจะไม่ได้มาตรฐาน (ต้นแบบได้ทำมันในขณะที่ผ่านมา) ถ้าฉันทำงานในสภาพแวดล้อมที่ไม่เป็นมิตร (จำนวนมาก coders อื่น ๆ ที่ใช้จำนวนมากของห้องสมุดที่แตกต่างกัน) ผมจะไม่ไว้วางใจใด ๆ เหล่านี้ ...
ปาโบลกาเบรรา

คอลัมน์ "เชื่อมโยง" ---> มีประโยชน์จริง ๆ ! ฉันรักคำตอบที่นี่: stackoverflow.com/questions/1744310/…
gordon

จะต้องมีการหุ้มในไฟล์ js ทุกไฟล์หรือไม่?
rd22

MDC คือใครกันแน่
Ferrybig

141

หรือคุณสามารถใช้ฟังก์ชัน jQuery 1.2 inArrayซึ่งควรทำงานกับเบราว์เซอร์:

jQuery.inArray( value, array [, fromIndex ] )

'indexOf' เป็นรหัสเนทีฟ (ขวา) ดังนั้น jQuery 'inArray ()' จึงเร็วเช่นใช้เนทิฟเมื่อมีและโพลีเติมเมื่อไม่ใช้
Jeach

10
ตกลงเพื่อที่จะตอบความคิดเห็นของตัวเอง (ด้านบน) ฉันเพิ่งใช้มันและบน Chrome มันเร็วเท่ากับตอนที่ฉันใช้ 'indexOf ()' แต่ใน IE 8 มันช้ามาก ... ดังนั้นอย่างน้อยเราก็รู้ that 'inArray ()' ใช้เนทิฟเมื่อมันสามารถ
Jeach

78

รหัสเต็มแล้วจะเป็นนี้:

if (!Array.prototype.indexOf) {
    Array.prototype.indexOf = function(obj, start) {
         for (var i = (start || 0), j = this.length; i < j; i++) {
             if (this[i] === obj) { return i; }
         }
         return -1;
    }
}

สำหรับคำตอบอย่างละเอียดจริงๆและรหัสนี้เช่นเดียวกับฟังก์ชั่นอื่น ๆ อาร์เรย์ตรวจสอบกองมากเกินคำถามFixing JavaScript ฟังก์ชั่นอาร์เรย์ใน Internet Explorer (indexOf, forEach ฯลฯ )


2
ขอบคุณสำหรับการมีสิ่งที่สมบูรณ์ ฉันเข้าชมหน้านี้บ่อยครั้งเมื่อใดก็ตามที่ฉันต้องการข้ามแพลตฟอร์ม indexOf ในโครงการใหม่และข้อมูลโค้ดของคุณเป็นรหัสเดียวที่มีรหัสเต็ม :) ไม่กี่วินาทีเหล่านั้นรวมกันจริง ๆ เมื่อมีคนเข้ามาที่หน้านี้
dylnmc

16

ไลบรารี underscore.js มีฟังก์ชันindexOf ที่คุณสามารถใช้แทน:

_.indexOf([1, 2, 3], 2)

4
คำตอบนี้หลีกเลี่ยงการยุ่งกับอาเรย์ต้นแบบและมอบให้กับ indexOf ดั้งเดิมเมื่อมี ฉันชอบมัน.
แบรดโคช์

ดูเหมือนจะเป็นวิธีที่ง่ายที่สุดถ้าคุณสามารถใส่เครื่องหมายขีดล่างหรือ Lodash
ChrisRich

10

if (!Array.prototype.indexOf)คุณควรตรวจสอบหากยังไม่ได้กำหนดโดยใช้

นอกจากนี้การใช้งานของคุณindexOfไม่ถูกต้อง คุณต้องใช้===แทน==ในif (this[i] == obj)คำสั่งของคุณมิฉะนั้น[4,"5"].indexOf(5)จะเป็น 1 ตามการใช้งานของคุณซึ่งไม่ถูกต้อง

ผมขอแนะนำให้คุณใช้การดำเนินการใน MDC


9

มีวิธีแก้ปัญหาอย่างเป็นทางการของ Mozilla: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf

(function() {
    /**Array*/
    // Production steps of ECMA-262, Edition 5, 15.4.4.14
    // Reference: http://es5.github.io/#x15.4.4.14
    if (!Array.prototype.indexOf) {
        Array.prototype.indexOf = function(searchElement, fromIndex) {
            var k;
            // 1. Let O be the result of calling ToObject passing
            //    the this value as the argument.
            if (null === this || undefined === this) {
                throw new TypeError('"this" is null or not defined');
            }
            var O = Object(this);
            // 2. Let lenValue be the result of calling the Get
            //    internal method of O with the argument "length".
            // 3. Let len be ToUint32(lenValue).
            var len = O.length >>> 0;
            // 4. If len is 0, return -1.
            if (len === 0) {
                return -1;
            }
            // 5. If argument fromIndex was passed let n be
            //    ToInteger(fromIndex); else let n be 0.
            var n = +fromIndex || 0;
            if (Math.abs(n) === Infinity) {
                n = 0;
            }
            // 6. If n >= len, return -1.
            if (n >= len) {
                return -1;
            }
            // 7. If n >= 0, then Let k be n.
            // 8. Else, n<0, Let k be len - abs(n).
            //    If k is less than 0, then let k be 0.
            k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
            // 9. Repeat, while k < len
            while (k < len) {
                // a. Let Pk be ToString(k).
                //   This is implicit for LHS operands of the in operator
                // b. Let kPresent be the result of calling the
                //    HasProperty internal method of O with argument Pk.
                //   This step can be combined with c
                // c. If kPresent is true, then
                //    i.  Let elementK be the result of calling the Get
                //        internal method of O with the argument ToString(k).
                //   ii.  Let same be the result of applying the
                //        Strict Equality Comparison Algorithm to
                //        searchElement and elementK.
                //  iii.  If same is true, return k.
                if (k in O && O[k] === searchElement) {
                    return k;
                }
                k++;
            }
            return -1;
        };
    }
})();

1
แค่เป็นคนคล่องแคล่ว แต่ MDN ไม่ได้เป็นเพียง Mozilla มันเป็นโครงการที่ขับเคลื่อนด้วยชุมชนที่มีพนักงานของ Mozilla แต่ก็มีอาสาสมัครทุกคนสามารถเข้าร่วมและมีส่วนร่วมได้
ste2425

5

ฉันอยากจะแนะนำสิ่งนี้กับทุกคนที่กำลังมองหาฟังก์ชั่นที่ขาดหายไป:

http://code.google.com/p/ddr-ecma5/

มันนำไปสู่การทำงานของ ecma5 ส่วนใหญ่ที่ขาดหายไปให้กับเบราว์เซอร์รุ่นเก่า :)


** แม้ว่าฉันจะทราบว่าฉันมีปัญหาใน IE7 กับ lib นี้
Josh Mc

2

นี่คือการดำเนินการของฉัน เป็นหลักเพิ่มสิ่งนี้ก่อนสคริปต์อื่น ๆ ในหน้า เช่นในต้นแบบของคุณสำหรับโซลูชันระดับโลกสำหรับ Internet Explorer 8 ฉันยังเพิ่มในฟังก์ชันตัดแต่งซึ่งดูเหมือนว่าจะใช้ในกรอบงานจำนวนมาก

<!--[if lte IE 8]>
<script>
    if (!Array.prototype.indexOf) {
        Array.prototype.indexOf = function(obj, start) {
            for (var i = (start || 0), j = this.length; i < j; i++) {
                if (this[i] === obj) {
                    return i;
                }
            }
            return -1;
        };
    }

    if(typeof String.prototype.trim !== 'function') {
        String.prototype.trim = function() {
            return this.replace(/^\s+|\s+$/g, '');
        };
    };
</script>
<![endif]-->

2

มันใช้งานได้สำหรับฉัน

if (!Array.prototype.indexOf) {
  Array.prototype.indexOf = function(elt /*, from*/) {
    var len = this.length >>> 0;

    var from = Number(arguments[1]) || 0;
    from = (from < 0)? Math.ceil(from) : Math.floor(from);
    if (from < 0)
    from += len;

    for (; from < len; from++) {
      if (from in this && this[from] === elt)
        return from;
    }
    return -1;
  };
}

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.