JavaScript 数组 filter() 方法

JavaScript 数组 filter() 方法

描述

JavaScript 数组 filter() 方法会根据提供的函数实现对所有符合条件的元素创建一个新的数组。

语法

它的语法如下所示 −

array.filter(callback[, thisObject]);

参数详细信息

  • callback - 测试数组每个元素的函数。

  • thisObject - 在执行回调函数时使用的对象 this

返回值

返回创建的数组。

兼容性

该方法是ECMA-262标准的JavaScript扩展,因此在标准的其他实现中可能不存在。要使其工作,您需要在脚本顶部添加以下代码。

if (!Array.prototype.filter) {
   Array.prototype.filter = function(fun /*, thisp*/) {
      var len = this.length;
      if (typeof fun != "function")
      throw new TypeError();

      var res = new Array();
      var thisp = arguments[1];
      for (var i = 0; i < len; i++) {
         if (i in this) {
            var val = this[i];   // in case fun mutates this
            if (fun.call(thisp, val, i, this))
            res.push(val);
         }
      }
      return res;
   };
}

示例

请尝试以下示例。

<html>
   <head>
      <title>JavaScript Array filter Method</title>
   </head>

   <body>   
      <script type = "text/javascript">
         if (!Array.prototype.filter) {
            Array.prototype.filter = function(fun /*, thisp*/) {
               var len = this.length;

               if (typeof fun != "function")
               throw new TypeError();

               var res = new Array();
               var thisp = arguments[1];

               for (var i = 0; i < len; i++) {
                  if (i in this) {
                     var val = this[i];   // in case fun mutates this
                     if (fun.call(thisp, val, i, this))
                     res.push(val);
                  }
               }
               return res;
            };
         }
         function isBigEnough(element, index, array) {
            return (element >= 10);
         }
         var filtered  = [12, 5, 8, 130, 44].filter(isBigEnough);
         document.write("Filtered Value : " + filtered ); 
      </script>      
   </body>
</html>

输出

Filtered Value : 12,130,44

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程