• JavaScript forEach方法


    最近看了一些html5和js方面的书,受益匪浅,因为看的东西比较多,却都没有怎么静心来做整理,慢慢来吧,可能最近自己有点儿小紧张。今天跟大家分享下JavaScript的forEach方法(其实是从《HTML5程序设计》这本书里看到的一种方法)。

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

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

    array1.forEach(callbackfn[, thisArg])

    参数

    定义

    array1

    必需。 一个数组对象。

    callbackfn

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

    thisArg

    可选。 可在 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. });
    转载自奶牛博客
  • 相关阅读:
    Unity RigidBodyFPSController 鼠标不显示
    egret 列表滑动时 中间的item 放大效果实现
    egret 相关面试题
    egret 点击屏幕外时,缓动动画会停止
    游戏中 商城 每隔一段时间刷新次数增加一次
    egret 游戏优化文档
    typescript 中 let和var的区别
    egret微端, 非原生打包相关
    代码中根据不同的类型获取多个标签的中文翻译
    总结一些 egret项目接小程序时 遇到的问题及解决方法
  • 原文地址:https://www.cnblogs.com/HughTan/p/3177266.html
Copyright © 2020-2023  润新知