在使用 js 判斷數組中是否存在該元素,我們會用到 indexOf 函數。而在 IE 上 indexOf 函數 無法兼容,通過以下方法解決,僅以文章記錄一下
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;
};
}