선택자
종류 jQuery 예시 Javascript 설명
필터링 .eq() ❤️ $("selector").eq(3) - 기본 태그를 선택합니다.
.filter() $("selector").filter() - 클래스를 선택합니다.
.first() $("selector").first() - 클래스를 선택합니다.
.has() ❤️ $("selector").has() - 클래스를 선택합니다.
.is() $("selector").is() - 클래스를 선택합니다.
.last() $("selector").last() - 클래스를 선택합니다.
.map() $("selector").map() - 클래스를 선택합니다.
.not() $("selector").not() - 클래스를 선택합니다.
.odd() $("selector").odd() - 클래스를 선택합니다.
.slice() $("selector").slice() - 클래스를 선택합니다.
트리구조 .children() $("selector").children() - 기본 태그를 선택합니다.
.closet() $("selector").closet() - 클래스를 선택합니다.
.find() ❤️ $("selector").find() - 클래스를 선택합니다.
.next() ❤️ $("selector").next() - 클래스를 선택합니다.
.nextAll() $("selector").nextAll() - 클래스를 선택합니다.
.nextUntil() $("selector").nextUntil() - 클래스를 선택합니다.
.offsetParent() $("selector").offsetParent() - 클래스를 선택합니다.
.parent() ❤️ $("selector").parent() parentNode 클래스를 선택합니다.
.parents() $("selector").parents() - 클래스를 선택합니다.
.parentsUntil() $("selector").parentsUntil() - 클래스를 선택합니다.
.prev() ❤️ $("selector").prev() - 클래스를 선택합니다.
.prevAll() $("selector").prevAll() - 클래스를 선택합니다.
.prevUntil() $("selector").prevUntil() - 클래스를 선택합니다.
.siblings() $("selector").siblings() - 클래스를 선택합니다.
기타 .add() $("selector").add() - 기본 태그를 선택합니다.
.addBack() $("selector").addBack() - 클래스를 선택합니다.
.contents() $("selector").contents() - 클래스를 선택합니다.
.each() ❤️ $("selector").each() forEach 클래스를 선택합니다.
.end() $("selector").end() - 클래스를 선택합니다.