码迷,mamicode.com
首页 > 其他好文 > 详细

IE8不支持数组的indexOf方法

时间:2014-06-25 15:00:43      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   使用   

在IE8下有个js错误,但是在其它浏览器下(Firefox, Chrome, IE9)下面都很正常。后来调试发现原因是在IE8下,js数组没有indexOf方法。

在使用indexOf方法前,执行一下下面的js, 原理就是如果发现数组没有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方法,布布扣,bubuko.com

IE8不支持数组的indexOf方法

标签:style   class   blog   code   color   使用   

原文地址:http://www.cnblogs.com/joeylee/p/3806615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!