728x90
300x250
each()
$대상.each(function(index){
var $target=$(this);
//or
var $target = $대상.eq(index);
})
$대상에 노드를 순차적으로 접근할 수 있다.
버튼을 클릭하면 각 list item값이 alert 값으로 호출된다.
<script>
$(document).ready(function(){
$("button").click(function(){
$("li").each(function(){
alert($(this).text())
});
});
});
</script>
<button>Alert the value of each list item</button>
<ul>
<li>Coffee</li>
<li>Milk</li>
<li>Soda</li>
</ul>
728x90
반응형
'javaScript > jQuery' 카테고리의 다른 글
[jQuery] 자식노드 찾기 children() (0) | 2023.01.09 |
---|---|
[jQuery]index 값 구하기 (0) | 2023.01.08 |
[jQuery] eq() 와 get()의 차이 (0) | 2022.12.26 |
[jQuery]n번째 노드 접근하기 eq (0) | 2022.12.25 |
[jQuery] ready()메서드 사용방법 4가지 (0) | 2022.12.09 |
댓글