cloudshadow

定义和用法:each() 方法规定为每个匹配元素规定运行的函数。

提示:返回 false 可用于及早停止循环。

语法:$(selector).each(function(index,element))

参数:function(index,element)
描述:
function(index,element) - 必需。为每个匹配元素规定运行的函数。
index - 选择器的 index 位置
element - 当前的元素(也可使用 "this" 选择器)

例子:

$("button").click(function(){
  $("li").each(function(){
    alert($(this).text())
  });
});

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-09-25
  • 2021-12-10
  • 2021-12-26
  • 2021-12-23
  • 2021-12-22
  • 2021-12-10
猜你喜欢
  • 2021-12-02
  • 2021-11-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
相关资源
相似解决方案