<!DOCTYPE html> <html> ?? ?<head> ?? ??? ?<meta charset="utf-8"> ?? ??? ?<title></title> ?? ?</head> ?? ?<body> ?? ??? ?<script type="text/javascript"> ?? ??? ??? ?// forEach 迭代(遍历)数组 ?? ??? ??? ? ?? ??? ??? ?// 例子如下: ? ? ? ? ? ? // 定义一个简单的数组 ?? ??? ??? ?var arr =[1,2,3] ?? ??? ??? ?
?? ??? ??? ?var sum = 0 ?? ??? ??? ?arr.forEach(function(value,index,array){ ?? ??? ??? ??? ?console.log('每个数组元素' + value) ?? ??? ??? ??? ?console.log('每个数组元素的索引号' + index) ?? ??? ??? ??? ?console.log('数组本身' + array) ?? ??? ??? ??? ? ?? ??? ??? ??? ?sum += value; ?? ??? ??? ?}) ?? ??? ??? ?console.log(sum) ?// 输出 6 ?? ??? ??? ? ?? ??? ??? ?// 格式如下 ?? ??? ??? ?arr.forEach(function(){ ?? ??? ??? ??? ? ?? ??? ??? ?}) ?? ??? ??? ? ?? ??? ?</script> ?? ?</body> </html>
|