[jQuery]each遍歴集合
4955 ワード
<p>1p>
<p>2p>
<p>3p>
<p>4p>
<script type="text/javascript">
$("p").each(function(){
alert($(this).text());
});
script>
ここでthisは、遍歴する現在の要素2を表す.下付きeach
<script type="text/javascript">
var arr = ["a","b","c"];
$.each(arr,function(index,m){
alert(index+"-"+m);
});
script>
0
から始まり、mは現在の要素オブジェクトを表す.遍歴は1回目がindex=0,m=a,2回目がindex=1,m=bの順に類推される.