each方法
Posted cycczh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了each方法相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div>
<ul>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
</ul>
</div>
<script src="js/jquery-1.12.4.js"></script>
<script>
$(function ()
$("ul>li").each(function (index,ele)
console.log(index);
console.log(ele);
/*$(ele).css("color","red");可以这样使用对象*/
console.dir(arguments[0]+"====="+arguments[1]);
)
/*index 序号 ele 该对象<li>1</li>*/
)
</script>
</body>
</html>
以上是关于each方法的主要内容,如果未能解决你的问题,请参考以下文章
Groovy集合遍历 ( 使用 for 循环遍历集合 | 使用集合的 each 方法遍历集合 | 集合的 each 方法返回值分析 )
Groovymap 集合 ( map 集合遍历 | 使用 map 集合的 each 方法遍历 map 集合 | 代码示例 )