[jQuery 요약정리] 03. 자식 노드 다루기





01. 모든 자식 노드 찾기


$대상.children()



02. 특정 자식 노드만 찾기


$대상.children("선택자")


cf) $대상.find("선택자") -> 자식 뿐만 아니라 모든 자손들을 상대로 검색



03. 첫번째, 마지막 자식 노드 찾기.


$대상.children().first()

$대상.children(":first")

$대상.children().last()

$대상.children(":last")



04. n번째 자식 노드 찾기


$대상.children().eq(index)

$대상.children(":eq("+index+")")






이 글을 공유하기

댓글

Designed by JB FACTORY