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

解决IE8不支持数组的indexOf方法

时间:2014-09-29 19:45:01      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   ar   for   sp   div   

今天在测试IE8的时候,遇到数组不支持indexOf的问题,在使用indexOf 方法前,对Array的原型方法进行扩展。

if (!Array.prototype.indexOf)
    {
        Array.prototype.indexOf = function(elt)
        {
            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方法

标签:style   blog   color   io   使用   ar   for   sp   div   

原文地址:http://www.cnblogs.com/shiqudou/p/4000774.html

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