Home>Article>Web Front-end> What are the ways to find the parent in jquery?

What are the ways to find the parent in jquery?

青灯夜游
青灯夜游 Original
2022-11-22 19:01:39 8401browse

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.

What are the ways to find the parent in jquery?

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:

What are the ways to find the parent in jquery?

##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:

     

jQuery入门教程

The effect is as follows:

What are the ways to find the parent in jquery?

2-What are the ways to find the parent in jquery?

##Method 3: parentsUntil( )

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 (曾曾祖父节点)
div (曾祖父节点)
    ul (祖父节点)
  • li (直接父节点) span

What are the ways to find the parent in jquery?

Method 4: closest()

closest() method returns the first ancestor element of the selected element.

    Starting from the current element
  • Traverse up the DOM tree and return the first single ancestor that matches the passed expression
  • Returns a jQuery object containing zero or one element
  • Syntax:
$(selector).closest(expression)

Example: Returns the th ofA parent element is a

  • element:
  •        
    
    body (曾曾祖先节点)
    div (曾祖先节点)
      ul (第二祖先 - 第二祖先节点)
        ul (第一祖先 - 第一祖先节点)
      • li (直接父节点) span

    What are the ways to find the parent in jquery?[Recommended learning:

    javascript video tutorial

    ]

    The 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!

    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn