目录

filter()

描述 (Description)

Javascript数组filter()方法创建一个新数组,其中包含通过所提供函数实现的测试的所有元素。

语法 (Syntax)

其语法如下 -

array.filter(callback[, thisObject]);

参数细节 (Parameter Details)

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

  • thisObject - 执行回调时用作this对象的对象。

返回值 (Return Value)

返回创建的数组。

兼容性 (Compatibility)

此方法是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;
   };
}

例子 (Example)

请尝试以下示例。

<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>

输出 (Output)

Filtered Value : 12,130,44 
↑回到顶部↑
WIKI教程 @2018