jQuery .each()这个和元素

前端之家收集整理的这篇文章主要介绍了jQuery .each()这个和元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在.each()回调中,这个和回调函数的第二个参数之间有什么区别吗?

例如,在以下代码中:

$("example").each( function(index,element) {
    // body
});

这个和元素有什么区别吗?提供的第二个参数是否可以选择一个名称

解决方法

不,没有区别;第二个参数只是为了方便起见。

Each time the callback runs,it is passed the current loop iteration,beginning from 0. More importantly,the callback is fired in the context of the current DOM element,so the keyword this refers to the element.

from 07000

最有可能的是第二个参数是与jQuery.each的一致性。

原文链接:https://www.f2er.com/jquery/182480.html

猜你在找的jQuery相关文章