JavaScript 数组 forEach()方法
描述
JavaScript数组 forEach() 方法对数组中的每个元素调用一个函数。
语法
其语法如下所示−
array.forEach(callback[, thisObject]);
参数详情
- callback − 用于测试数组每个元素的函数。
-
thisObject − 在执行回调时要使用的对象。
返回值
返回创建的数组。
兼容性
这个方法是ECMA-262标准的JavaScript扩展,因此在标准的其他实现中可能不存在。要使它工作,您需要在脚本顶部添加以下代码。
if (!Array.prototype.forEach) {
Array.prototype.forEach = 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);
}
};
}
示例
请尝试以下示例。
<html>
<head>
<title>JavaScript Array forEach Method</title>
</head>
<body>
<script type = "text/javascript">
if (!Array.prototype.forEach) {
Array.prototype.forEach = 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);
}
};
}
function printBr(element, index, array) {
document.write("<br />[" + index + "] is " + element );
}
[12, 5, 8, 130, 44].forEach(printBr);
</script>
</body>
</html>
输出
[0] is 12
[1] is 5
[2] is 8
[3] is 130
[4] is 44