JavaScript Array.each函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript Array.each函数相关的知识,希望对你有一定的参考价值。

if(typeof Array.prototype.each != 'function'){
			Array.prototype.each = function(callback, context){
				if(this.length > 0 && typeof callback == 'function'){
					for(var i = 0; i < this.length; i++){
						callback.call(context || window, this[i]);
					}
				}
			}
		}

以上是关于JavaScript Array.each函数的主要内容,如果未能解决你的问题,请参考以下文章

Array#each 与 Array#map

Ruby if else 在 array.each

为啥#map 比#each 更有效?

HAML 中 Javascript 中的 Ruby 方法

使用do block vs braces {}

jQuery:对 $.each 的结果进行排序