본문 바로가기

플밍 is 뭔들/JavaScript&jQuery

[jQuery] 자식 노드 찾기

자식노드 찾기는 전에 포스팅한 [jQuery] 찾은 노드 다루기 응용이므로 따로 설명하지 않겠다.
자식노드는 바로 한단계 하위 노드이며 그 이상의 하위노드는 자식노드라 하지않고 자손노드라 한다.
그런 노드들은 find()를 이용해 찾을 수 있다.

1.모든 자식노드 찾기
$대상.children()

2.특정 자식노드만 찾기
$대상.children("선택자")

3.첫번째 자식노드 찾기
$대상.children().first()
$대상.children().eq(0)
$대상.children(":first")
$대상.children(":eq(0)")

4.마지막 번째 자식 노드 찾기
$대상.children().last()
$대상.children(":last")
$대상.children().eq($대상.children.length-1)
$대상.children(":eq("+($대상.children().length-1)+")")
$대상.children().eq(-1)
$대상.children(":eq(-1)")

5.n번째 자식노드 찾기
$대상.children().eq(index)
$대상.children(":eq("+index+")")