반응형
traverse
[동사] (격식 또는 전문 용어) 가로지르다, 횡단하다
[동사] 가로지르다, 횡단하다 , [명사] 횡단; 횡단 지역
API | category:traversing | also in | |
---|---|---|---|
01 | .add() | 이미 선택된 요소들과 주어진 선택자에 매치되는 요소들의 합집합 | Traversing > Miscellaneous Traversing |
02 | .addBack() | Add the previous set of elements on the stack to the current set, optionally filtered by a selector. | Traversing > Miscellaneous Traversing |
03 | .andSelf() | Add the previous set of elements on the stack to the current set. | Deprecated > Deprecated 1.8 | Traversing > Miscellaneous Traversing |
04 | .children() | Get the children of each element in the set of matched elements, optionally filtered by a selector. | Traversing > Tree Traversal |
05 | .closest() | For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. | Traversing > Tree Traversal |
06 | .contents() | Get the children of each element in the set of matched elements, including text and comment nodes. | Traversing > Miscellaneous Traversing |
07 | .each() | Iterate over a jQuery object, executing a function for each matched element. | Miscellaneous > Collection Manipulation |
08 | .end() | End the most recent filtering operation in the current chain and return the set of matched elements to its previous state. | Traversing > Miscellaneous Traversing |
09 | .eq() | Reduce the set of matched elements to the one at the specified index. | Traversing > Filtering |
10 | .filter() | Reduce the set of matched elements to those that match the selector or pass the function’s test. | Traversing > Filtering |
11 | .find() | Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element. | Traversing > Tree Traversal |
12 | .first() | Reduce the set of matched elements to the first in the set. | Traversing > Filtering |
13 | .has() | Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. | Traversing > Filtering |
14 | .is() | Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. | Traversing > Filtering |
15 | .last() | Reduce the set of matched elements to the final one in the set. | Traversing > Filtering |
16 | .map() | Pass each element in the current matched set through a function, producing a new jQuery object containing the return values. | Traversing > Filtering |
17 | .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. | Traversing > Tree Traversal |
18 | .nextAll() | Get all following siblings of each element in the set of matched elements, optionally filtered by a selector. | Traversing > Tree Traversal |
19 | .nextUntil() | Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed. | Traversing > Tree Traversal |
20 | .not() | Remove elements from the set of matched elements. | Traversing > Filtering | Traversing > Miscellaneous Traversing |
21 | .offsetParent() | Get the closest ancestor element that is positioned. | Offset | Traversing > Tree Traversal |
22 | .parent() | Get the parent of each element in the current set of matched elements, optionally filtered by a selector. | Traversing > Tree Traversal |
23 | .parents() | Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. | Traversing > Tree Traversal |
24 | .parentsUntil() | Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object. | Traversing > Tree Traversal |
25 | .prev() | Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector. | Traversing > Tree Traversal |
26 | .prevAll() | Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector. | Traversing > Tree Traversal |
27 | .prevUntil() | Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object. | Traversing > Tree Traversal |
28 | .siblings() | Get the siblings of each element in the set of matched elements, optionally filtered by a selector. | Traversing > Tree Traversal |
29 | .slice() | Reduce the set of matched elements to a subset specified by a range of indices. | Traversing > Filtering |
반응형
'wEb > javascript' 카테고리의 다른 글
CommonJS(커먼JS) (0) | 2018.12.19 |
---|---|
jquery .css 변수 사용 (0) | 2013.09.29 |
keydown(), keyup(), keypress() (0) | 2013.09.28 |
.live() 와 .bind() (0) | 2013.09.28 |
preventDefault(), stopPropagation(), return false; (0) | 2013.09.28 |
mouseenter와 mouseleave를 동시에 쓰는 함수 hover() (0) | 2013.09.28 |
$(document).ready (0) | 2013.08.16 |
jQuery API .nextAll() test (0) | 2013.06.07 |
자바스크립트 배열작성 방식 3가지 (0) | 2013.03.25 |
jquery를 이용한 필요없는 셀지우기 (0) | 2012.04.20 |