https://api.jquery.com/eq/

 

.eq() | jQuery API Documentation

Description: Reduce the set of matched elements to the one at the specified index. Given a jQuery object that represents a set of DOM elements, the .eq() method constructs a new jQuery object from one element within that set. The supplied index identifies

api.jquery.com

eq는 index요소를 가지고 그 요소를 선택하는 jquery 요소 입니다. eq를 사용시 새로운 jquery 객체를 만들어냅니다.

eq를 사용하기 위해서는 해당요소에서 추출할수 있는 index가 존재 하여야합니다.

 

사용방법도 간단하며 유용한 요소입니다.

 

index는 0부터 시작하며 -를 붙일시에는 역순으로 선택됩니다.

 

HTML
JS
결과물

'JavaScript > jquery' 카테고리의 다른 글

text()를 이용한 html 제거  (0) 2020.05.05
replace, replace all  (0) 2020.03.23
필터(FILTER) 3  (0) 2017.10.03
필터(FILTER) 1  (0) 2017.10.03
jQuery 자식 선택자  (0) 2017.09.18