일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 일본 나라
- 호버스타일
- input style
- 혼자공부하는파이썬
- 일본
- #파이썬
- 혼공파
- 나라 사슴
- 비쥬얼스튜디오코드
- 파이썬
- 혼공파선택미션
- 파이썬혼자공부하기
- Python
- 조건문
- 한빛미디어
- 비쥬얼스튜디오코드설치
- 혼공단
- 일본나라여행
- 파이썬조건문
- 나라여행
- 파이썬문자열
- 혼공파미션
- 일본여행
- 일본 관광
- 혼자여행
- input
- 파이썬혼공
- 파이썬공부
- 일본 사슴
- hover style
Archives
- Today
- Total
Eveningstar
prev()/next()/siblings() 본문
.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