Home>Article>Web Front-end> What are the ways to find the parent in jquery?
4 methods: 1. parent(), you can find the "parent element" of the current element, the syntax is "$(selector).parent(expression)"; 2. parents(), you can find all Select the ancestor elements of the element, the syntax is "$(selector).parents(expression)"; 3. parentsUntil(), which can find all ancestor elements in the specified range, the syntax is "$(selector).parentsUntil(expression)" ; 4. closest(), the first ancestor element of the selected element.
The operating environment of this tutorial: windows7 system, jquery3.6.1 version, Dell G3 computer.
jquery method of finding parents
parent()
parents()
parentsUntil()
closest()
Method 1: parent()
In jQuery, we can use the parent() method to find the "parent element" of the current element. Remember, elements have only one parent.
Syntax:
$(selector).parent(expression)
Description: The parameter expression represents the jQuery selector expression, used to filter parent elements. When the parameter is omitted, all parent elements are selected. If the parameter is not omitted, the parent element that meets the conditions is selected.
Don’t the elements have only one parent element? Why is there still such a thing as "eligible parent element"? For this, take a look at the following example.
Example:
php中文网jQuery入门教程
php中文网jQuery入门教程
php中文网jQuery入门教程
The effect is as follows:
##Method 2: parents()
The parents() method is similar to the parent() method, both are used to find the ancestor elements of the selected element. But these two methods also have essential differences. In fact, these two methods are also easy to distinguish. parent is in singular form, and there is only one ancestor element to be searched for, which is the parent element. Parents is a plural form, and the ancestor elements to be searched are of course all ancestor elements. Syntax:$(selector).parents(expression)Description: The parameter expression represents the jQuery selector expression string, used to filter ancestor elements. When the argument is omitted, all ancestor elements are selected. If the parameter is not omitted, the ancestor element that meets the conditions is selected. Example:
The effect is as follows: ##Method 3: parentsUntil( )jQuery入门教程
parentsUntil() method is a supplement to the parents() method. It can find all ancestor elements in the specified range, which is equivalent to intercepting some ancestor elements from the collection returned by the parents() method.
Syntax:
$(selector).parentsUntil(expression)
Description: The parameter expression represents the jQuery selector expression string, used to filter ancestor elements. When the argument is omitted, all ancestor elements are selected. If the parameter is not omitted, the ancestor element that meets the conditions is selected.
The parameter selector represents the jQuery selector expression string, used to determine the ancestor elements of the range. This parameter is optional. If omitted, all ancestor elements will be matched, which is the same as the results of the parents() method.
body (曾曾祖父节点)Method 4: closest()div (曾祖父节点)ul (祖父节点)
- li (直接父节点) span
closest() method returns the first ancestor element of the selected element.
$(selector).closest(expression)
Example: Returns the th ofA parent element is a
body (曾曾祖先节点)div (曾祖先节点)ul (第二祖先 - 第二祖先节点)
ul (第一祖先 - 第一祖先节点)
- li (直接父节点) span
[Recommended learning:
javascript video tutorialThe above is the detailed content of What are the ways to find the parent in jquery?. For more information, please follow other related articles on the PHP Chinese website!