首页 > 其他 > 详细

IE8下 不能使用indexOf的问题

时间:2020-12-30 22:12:11      阅读:25      评论:0      收藏:0      [点我收藏+]

在使用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;
};
}

IE8下 不能使用indexOf的问题

原文:https://www.cnblogs.com/mollie-x/p/14212206.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!