JavaScript 数组 every() 方法
描述
JavaScript数组every()方法测试数组中的所有元素是否都通过提供的函数实现的测试。
语法
它的语法如下所示−
array.every(callback[, thisObject]);
参数详情
- callback − 用于对每个元素进行测试的函数。
-
thisObject − 在执行回调时用作 this 的对象。
返回值
如果该数组的每个元素都符合提供的测试函数,则返回true。
兼容性
此方法是ECMA-262标准的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;
};
}
示例
尝试以下示例。
<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>
输出
First Test Value : falseSecond Test Value : true