본문 바로가기
javaScript/jQuery

[jQuery] 마지막 번째 자식 요소 찾기

by mooyou 2023. 1. 13.
728x90
300x250

 

마지막 자식 요소 찾기

$(선택자).children().last()
$(선택자).children()(":last")
$(선택자).children().eq($(선택자).children().length-1)
$(선택자).children(":eq("+$(선택자).children().length-1+")")
$(선택자).children().eq(-1)
$(선택자).children(":eq(-1)")

 

 

728x90
반응형

댓글