Js中的forEach()、map()、$.each()和$.map()之间异同
# 原生JS:forEach()和map()遍历
共同点
1.都是循环遍历数组中的每一项。 2.forEach() 和 map() 里面每一次执行匿名函数都支持3个参数:数组中的当前项item,当前项的索引index,原始数组arr。 3.匿名函数中的this都是指Window。 4.只能遍历数组。
forEach()
没有返回值,不对原来数组进行修改,但是可以自己通过数组的索引来修改原来的数组;
var ary = [12,23,24,42,1];
var res = ary.forEach(function (item,index,arr) {
arr[index] = item*10;
})
console.log(res);//--> undefined;
console.log(ary);//--> 通过数组索引改变了原数组;
1
2
3
4
5
6
2
3
4
5
6
map()
有返回值,可以 return 出来,但并不影响原来的数组,只是相当于把原数组克隆一份,把克隆的这一份的数组中的对应项改变了
var ary = [12,23,24,42,1];
var res = ary.map(function (item,index,arr) {
return item*10;
})
console.log(res); //-->[120,230,240,420,10]; 原数组拷贝了一份,并进行了修改
console.log(ary); //-->[12,23,24,42,1]; 原数组并未发生变化
1
2
3
4
5
6
2
3
4
5
6
兼容写法
不管是 forEach
还是 map
在IE6-8下都不兼容(不兼容的情况下在 Array.prototype
上没有这两个方法),那么需要我们自己封装一个都兼容的方法,代码如下:
/**
* forEach遍历数组
* @param callback [function] 回调函数;
* @param context [object] 上下文;
*/
Array.prototype.myForEach = function myForEach(callback,context){
context = context || window;
if('forEach' in Array.prototye) {
this.forEach(callback,context);
return;
}
//IE6-8下自己编写回调函数执行的逻辑
for(var i = 0,len = this.length; i < len;i++) {
callback && callback.call(context,this[i],i,this);
}
}
/**
* map遍历数组
* @param callback [function] 回调函数;
* @param context [object] 上下文;
*/
Array.prototype.myMap = function myMap(callback,context){
context = context || window;
if('map' in Array.prototye) {
return this.map(callback,context);
}
//IE6-8下自己编写回调函数执行的逻辑
var newAry = [];
for(var i = 0,len = this.length; i < len;i++) {
if(typeof callback === 'function') {
var val = callback.call(context,this[i],i,this);
newAry[newAry.length] = val;
}
}
return newAry;
}
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
38
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
38
# jQuery:$.each()和$.map()遍历
共同点
即可遍历数组,又可遍历对象。
$.each()
没有返回值,$.each()
里面的匿名函数支持2个参数:当前项的索引i,数组中的当前项v。如果遍历的是对象,k 是键,v 是值。
//数组遍历
$.each( ["a","b","c"], function(i, v){
alert( i + ": " + v );
});
$("span").each(function(i, v){
alert( i + ": " + v );
});
//对象遍历
$.each( { name: "John", lang: "JS" }, function(k, v){
alert( "Name: " + k + ", Value: " + v );
});
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
$.map()
有返回值,$.map()
里面的匿名函数支持2个参数和 $.each()
里的参数位置相反:数组中的当前项v,当前项的索引 i。如果遍历的是对象,k 是键,v 是值。如果是 $("span").map()
形式,参数顺序和 $.each()
$("span").each()
一样。
var arr=$.map( [0,1,2], function(v){
return v + 4;
});
console.log(arr);
$.map({"name":"Jim","age":17},function(k, v){
console.log( k+":"+v );
});
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
上次更新: 2024/01/30, 00:35:17
- 01
- linux 在没有 sudo 权限下安装 Ollama 框架12-23
- 02
- Express 与 vue3 使用 sse 实现消息推送(长连接)12-20