JavaScript를 오랫동안 사용 해본 적이 있다면 Internet Explorer가 Array.prototype.indexOf ()에 대한 ECMAScript 함수를 구현하지 않는다는 것을 알고 있습니다 (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;
}
언제 구현해야합니까?
프로토 타입 함수가 존재하는지 여부를 확인하고 그렇지 않은 경우 어레이 프로토 타입을 확장하는 다음 확인으로 모든 페이지에 랩핑해야합니까?
if (!Array.prototype.indexOf) {
// Implement function here
}
또는 브라우저 확인을 수행하고 Internet Explorer 인 경우 구현합니까?
//Pseudo-code
if (browser == IE Style Browser) {
// Implement function here
}
답변
답변
또는 jQuery 1.2 inArray 함수를 사용할 수 있으며 이는 브라우저에서 작동합니다.
jQuery.inArray( value, array [, fromIndex ] )
답변
전체 코드는 다음과 같습니다.
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;
}
}
정말 철저하게 대답 코드 이것뿐만 아니라 다른 배열 함수의 스택 오버플로 질문 체크 아웃 인터넷 익스플로러 (같이 IndexOf의 Foreach 등)에 자바 스크립트 배열 함수를 수정 .
답변
답변
를 사용하여 정의되어 있지 않은지 확인해야합니다 if (!Array.prototype.indexOf)
.
또한 구현 indexOf
이 올바르지 않습니다. 당신 의 진술 ===
대신에 사용해야 ==
합니다 if (this[i] == obj)
. 그렇지 않으면 [4,"5"].indexOf(5)
구현에 따라 1이 될 것입니다.
답변
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;
};
}
})();
답변
누락 된 기능을 찾는 사람에게 이것을 권장합니다.
http://code.google.com/p/ddr-ecma5/
그것은 누락 된 ecma5 기능을 대부분의 오래된 브라우저에게 가져옵니다. 🙂