How to remove sibling nodes in jquery

青灯夜游
Release: 2022-04-21 18:02:45
Original
1868 people have browsed it

Jquery method to remove sibling nodes: 1. Use siblings(), next(), prev() and other functions to obtain the designated sibling nodes of the selected element, such as "element object.siblings()"; 2. Use remove() to delete the obtained sibling node, the syntax is "sibling node.remove()".

How to remove sibling nodes in jquery

The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.

jquery method to remove sibling nodes

Implementation idea:

  • Use jquery Methods to obtain sibling nodes

    There are generally seven methods to obtain sibling nodes: siblings(), next(), nextAll(), nextUntil(), prev(), prevAll(), prevUntil()

    • siblings() method, mainly used to obtain all sibling elements of the same level of the specified element

    • ##next() method, mainly used to obtain the specified element The next sibling element

    • nextAll() method is mainly used to obtain all sibling elements of the next sibling element of the specified element

    • nextUntil( ) method, mainly used to obtain the next sibling element of the specified element. This sibling element must be the element between the specified element and the element set by the nextUntil() method

    • prev() method , mainly used to obtain the upper level sibling elements of the specified element

    • prevAll() method, mainly used to obtain all the sibling elements of the upper level of the specified element

    • The prevUntil() method is mainly used to obtain the previous sibling element of the specified element. This sibling element must be the element between the specified element and the element set by the prevUntil() method

  • Use the remove() method to delete the obtained sibling nodes

The following uses siblings(), next(), prev () as an example, let’s introduce the deletion method:

Example 1: Remove the sibling nodes obtained by the siblings() method

       
  
    ul (父节点)
  • li (类名为"star"的上一个兄弟节点)
  • li (类名为"star"的上一个兄弟节点)
  • 类名称为“star”的li元素
  • li (类名为"star"的下一个兄弟节点)
  • li (类名为"star"的下一个兄弟节点)

选择类名称为“star”的li元素的所有兄弟元素

Copy after login

How to remove sibling nodes in jquery

Example 2: Remove next( ) method to obtain sibling nodes

       
  
    ul (父节点)
  • li (类名为"star"的上上一个兄弟节点)
  • li (类名为"star"的上一个兄弟节点)
  • 类名称为“star”的li元素
  • li (类名为"star"的下一个兄弟节点)
  • li (类名为"star"的下下一个兄弟节点)

选择类名称为“star”的li元素的下一个兄弟元素

Copy after login

How to remove sibling nodes in jquery

Example 3: Remove sibling nodes obtained by prev() method

       
  
    ul (父节点)
  • li (类名为"star"的上上一个兄弟节点)
  • li (类名为"star"的上一个兄弟节点)
  • 类名称为“star”的li元素
  • li (类名为"star"的下一个兄弟节点)
  • li (类名为"star"的下下一个兄弟节点)

选择类名称为“star”的li元素的上一个兄弟元素

Copy after login

How to remove sibling nodes in jquery

[Recommended learning:

jQuery video tutorial,web front-end video]

The above is the detailed content of How to remove sibling nodes in jquery. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!