JavaScript陣列過filter()方法建立一個新的陣列提供的函式來實現測試的所有元素。
array.filter(callback[, thisObject]);
下面是引數的詳細資訊:
callback : 函式用來測試陣列的每個元素
thisObject : 物件作為該執行回撥時使用
返回所建立陣列
這種方法是一個JavaScript擴充套件到ECMA-262標準;因此它可能不存在在標準的其他實現。為了使它工作,你需要新增下面的指令碼的頂部程式碼:
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