Home > Article > Web Front-end > What are the jQuery traversal methods?
jQuery traversal methods include: each(), end(), eq(), filter(), find(), first(), is(), map(), last(), next() , nextAll(), nextUntil(), offsetParent(), etc.
Related recommendations: "jQuery Video Tutorial"
jQuery built-in Traversal method
add() Adds elements to the set of matching elements
addBack() Adds the previous set of elements to the current set
andSelf() is deprecated in version 1.8. Alias of addBack()
children() Returns all direct child elements of the selected element
closest() Returns the first ancestor element of the selected element
contents() Returns all direct child elements of the selected element (including text and comment nodes)
each() Execute the function for each matching element
end() End the closest in the current chain A filtering operation, and returns the set of matching elements to the previous state
eq() Returns the element with the specified index number of the selected element
filter() Returns the set of matching elements Reduced to a new element matching the return value of the selector or matching function
find() Returns the descendant element of the selected element
first() Returns the first element of the selected element
has() Returns all elements that have one or more elements inside them
is() Checks the set of matching elements based on the selector/element/jQuery object, and returns if there is at least one matching element true
last() Returns the last element of the selected element
map() Passes each element in the current matching set to the function and generates a new jQuery object containing the return value
next() Returns the next sibling element of the selected element
nextAll() Returns all sibling elements after the selected element
nextUntil() Returns between two All sibling elements after each element between the given parameters
not() Removes the element from the set of matching elements
offsetParent() Returns the first positioned parent element
parent() Returns the direct parent element of the selected element
parents() Returns all ancestor elements of the selected element
parentsUntil() Returns between two given parameters All ancestor elements between
prev() Returns the previous sibling element of the selected element
prevAll() Returns all sibling elements before the selected element
prevUntil() Returns all sibling elements before each element between the two given parameters
siblings() Returns all sibling elements of the selected element
slice() Reduce the set of matching elements to a subset of the specified range
For more programming-related knowledge, please visit: Programming Course! !
The above is the detailed content of What are the jQuery traversal methods?. For more information, please follow other related articles on the PHP Chinese website!