IE7 Array indexOf()修复
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE7 Array indexOf()修复相关的知识,希望对你有一定的参考价值。
source: http://stellapower.net/content/javascript-support-and-arrayindexof-ie/source: http://www.robsearles.com/2010/03/11/ie-7-indexof-replacement/
/* this will work in all browsers(no jQuery needed) */ if (!Array.indexOf) { Array.prototype.indexOf = function (obj, start) { for (var i = (start || 0); i < this.length; i++) { if (this[i] == obj) { return i; } } return -1; } } //call var i = haystack_array.indexOf("needle") /* or you can use jquery instead */ //call var i = jQuery.inArray("needle", haystack_array)
以上是关于IE7 Array indexOf()修复的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Internet Explorer 浏览器的 JavaScript 中修复数组 indexOf()
Mozilla的Array.prototype.indexOf中的代码问题[重复]