DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JavaScript中的every()方法介紹
JavaScript中的every()方法介紹
編輯:JavaScript綜合知識     

   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
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved