JavaScript forEach方法

最近看了一些html5和js方面的书,受益不浅,由于看的东西比较多,却都没有怎么静心来作整理,慢慢来吧,可能最近本身有点儿小紧张。今天跟你们分享下JavaScript的forEach方法(实际上是从《HTML5程序设计》这本书里看到的一种方法)。html

首先说下JavaScript的forEach的标准格式。html5

为数组中的每一个元素执行指定操做。数组

array1.forEach(callbackfn[, thisArg])

参数函数

定义this

array1.net

必需。 一个数组对象。prototype

callbackfn设计

必需。 一个接受最多三个参数的函数。 对于数组中的每一个元素,forEach 都会调用callbackfn 函数一次。code

thisArghtm

可选。 可在 callbackfn 函数中为其引用 this 关键字的对象。 若是省略 thisArg,则undefined 将用做 this 值。

若是 callbackfn 参数不是函数对象,则将引起 TypeError 异常。

对于数组中的每一个元素,forEach 方法都会调用 callbackfn 函数一次(采用升序索引顺序)。 不为数组中缺乏的元素调用该回调函数。

除了数组对象以外,forEach 方法可由具备 length 属性且具备已按数字编制索引的属性名的任何对象使用。

回调函数语法

回调函数的语法以下所示:

function callbackfn(value, index, array1)

可以使用最多三个参数来声明回调函数。

回调函数的参数以下所示。

回调参数

定义

value

数组元素的值。

index

数组元素的数字索引。

array1

包含该元素的数组对象。

修改数组对象

forEach 方法不直接修改原始数组,但回调函数可能会修改它。

好吧,上面是从微软的http://technet.microsoft.com/zh-cn/ff679980%28v=vs.85%29页面copy过来的,有兴趣的直接去那里看就行了。也就是说通常方法的格式是:

arrayx.forEach(function(value,index,arrayy){…})

但对于NodeList要用下面的写法。

[].forEach.call(lists,function(valule.index.arrayy){…})

Why can’t I use forEach or map on a NodeList?

NodeList are used very much like arrays and it would be tempting to use Array.prototype methods on them. This is, however, impossible.

JavaScript has an inheritance mechanism based on prototypes. Array instances inherit array methods (such as forEach or map) because their prototype chain looks like the following:

myArray --> Array.prototype --> Object.prototype --> null (the prototype chain of an object can be obtained by calling several times Object.getPrototypeOf)

forEach, map and the likes are own properties of the Array.prototype object.

Unlike arrays, NodeList prototype chain looks like the following:

myNodeList --> NodeList.prototype --> Object.prototype --> null

NodeList.prototype contains the item method, but none of the Array.prototype methods, so they cannot be used on NodeLists.

实例

  1. [].forEach.call(document.querySelectorAll('section[data-bucket]'), function(elem, i) {
  2.   localStorage['bucket' + i] = elem.getAttribute('data-bucket');
  3. });
转载自奶牛博客