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

Posted itly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>




以上是关于javascript与jQuery的each,map回调函数参数顺序问题的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 学习-41.jQuery 中 each 遍历

如何将 jQuery each() 变成常规的 javascript 循环

如何在 jQuery / javascript 中使用 each() 进行迭代或循环

$.each()与$(selector).each()

使用 Jquery Each 在 Javascript 对象和数组中查找匹配项

JQuery之each函数详解