首页 > 代码库 > javascript与jQuery的each,map回调函数参数顺序问题

javascript与jQuery的each,map回调函数参数顺序问题

<script>
var arr = [2,3,6,7,9];
//javascript中的forEach map方法
arr.forEach(function(value,index){//(,索引)
console.log(value);
});
arr.map(function(value,index){//(,索引)
console.log(value);
});

//jQuery each map方法
$(arr).each(function(index,value){//(索引,)
console.log(index);
});
$.each(arr,function(index,value){//(索引,)
console.log(index);
});

$.map(arr,function(value,index){//(,索引)
console.log(index);
});
$.map(arr,function(value,index){//(,索引)
console.log(index);
});

//总结:只有jQueryeach方法,回调处理函数的中的参数是(索引,),其它的都是(,索引);


</script>
技术分享


来自为知笔记(Wiz)


javascript与jQuery的each,map回调函数参数顺序问题