JavaScript 數組中的每個方法測試數組中的所有元素是否經過所提供的函數來實現測試。
語法
?
1 array.every(callback[, thisObject]);下面是參數的詳細信息:
callback : 函數用來測試每個元素
thisObject : 對象作為該執行回調時使用
返回值:
返回true,如果此數組中的每個元素滿足所提供的測試函數。
兼容性:
這種方法是一個JavaScript擴展到ECMA-262標准;因此它可能不存在在標准的其他實現。為了使它工作,你需要添加下面的腳本的代碼在頂部:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 if (!Array.prototype.every) { Array.prototype.every = 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)) return false; } return true; }; }例子:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 <html> <head> <title>JavaScript Array every Method</title> </head> <body> <script type="text/javascript"> if (!Array.prototype.every) { Array.prototype.every = 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)) return false; } return true; }; } function isBigEnough(element, index, array) { return (element >= 10); } var passed = [12, 5, 8, 130, 44].every(isBigEnough); document.write("First Test Value : " + passed ); passed = [12, 54, 18, 130, 44].every(isBigEnough); document.write("Second Test Value : " + passed ); </script> </body> </html>這將產生以下結果:
?
1 First Test Value : falseSecond Test Value : true