AI智能
改变未来

原生JS map方法 和 jQuery map方法

var arr = [1,2,3,4,5];var obj = {0:1, 1:3, 2:5, 3:7, 4:9};

原生js的map
第一个参数:当前遍历的元素
第二个参数:当前遍历的索引
第三个参数:当前遍历的数组
不能遍历伪数组

arr.map(function (value, index, array) {console.log(index, value, array)});

jQuery的map:
第一个参数:当前遍历的数组
第二个参数:每遍历一个元素之后执行的回调函数
回调函数参数:
第一个参数:当前遍历的元素
第二个参数:当前遍历的索引

可以遍历伪数组

$.map(arr, function (value, index) {console.log(index, value);});$.map(obj, function (value, index) {console.log(index, value);});
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 原生JS map方法 和 jQuery map方法