码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-04-21 12:54:14      阅读:114      评论: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方法的解决办法

标签:

原文地址:http://www.cnblogs.com/jiangyy/p/4443877.html

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