Eveningstar

prev()/next()/siblings() 본문

jQuery

prev()/next()/siblings()

두루루루루 2017. 8. 18. 00:26


.prev()

:Get the immediately preceding sibling of each element in the set of matched elements. If a selector is provided, it retrieves the previous sibling only if it matches that selector.


선택 요소의 바로 이전에 오는 요소를 반환, 선택자가 인자로 제공되면, 선택자와 일치하는 경우에만 이전 형제 요소를 반환한다.



.next()

:Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector.


선택 요소의 바로 다음에 오는 요소를 반환, 선택자가 인자로 제공되면, 선택자와 일치하는 경우에만 다음 형제 요소를 반환한다.


.siblings()

선택 요소의 형제 요소를 반환한다.


https://jsfiddle.net/jywoo/o78snwj7/1/


https://jsfiddle.net/jywoo/7j36931L/


'jQuery' 카테고리의 다른 글

html()/addClass()/removeClass()  (0) 2017.08.22
.prepend() 와 .append()  (0) 2017.08.21
.children() / .parent()  (0) 2017.08.16
20170813  (0) 2017.08.14
속성 선택자  (0) 2017.08.10
Comments