摘要:
语法:array.forEach(callbackfn[, thisArg])参数说明:array1 必需。 一个数组对象。callbackfn 必需。 一个接受最多三个参数的函数。 对于数组中的每个元素,forEach 都会调用 callbackfn 函数一次。 thisArg 可选。 可在 callbackfn 函数中为其引用 this 关键字的对象。 如果省略 thisArg,则 undefined 将用作 this 值对于数组中的每个元素,forEach 方法都会调用 callbackfn 函数一次(采用升序索引顺序)。 回调函数语法:function callbackfn(va... 阅读全文