Javascript Array forEach() 方法

返回 Javascript Array 对象


定义

forEach()方法为数组中的每个元素调用一个函数。

注意: forEach() 对于空数组是不会执行回调函数的。

语法

语法如下

array.forEach(callback[, thisObject]);

参数

  • callback - 必需,测试数组每个元素的函数。
  • thisObject - 可选,在执行回调时用作 this 的对象。

返回值

无返回值

浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

所有主流浏览器都支持 forEach() 方法。

示例

<html>
   <head>
      <title>JavaScript Array forEach Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         if (!Array.prototype.forEach) {
            Array.prototype.forEach = function(fun /*, thisp*/) {
               var len = this.length;
               
               if (typeof fun != "function")
               throw new TypeError();
               
               var thisp = arguments[1];
               for (var i = 0; i < len; i++) {
                  if (i in this)
                  fun.call(thisp, this[i], i, this);
               }
            };
         }
         function printBr(element, index, array) {
            document.write("<br />[" + index + "] is " + element ); 
         }
         [12, 5, 8, 130, 44].forEach(printBr);
      </script>      
   </body>
</html>

输出结果

[0] is 12
[1] is 5
[2] is 8
[3] is 130
[4] is 44 

尝试一下


返回 Javascript Array 对象

查看笔记

扫码一下
查看教程更方便