📜  jQuery |穿越后裔

📅  最后修改于: 2022-05-13 01:55:58.017000             🧑  作者: Mango

jQuery |穿越后裔

使用 jQuery,我们可以向下遍历DOM 树以搜索元素的后代
后代是孩子、孙子、曾孙等。

遍历 DOM 树:用于遍历 DOM 树的 jQuery 方法是。

  • 孩子们()
  • 找()
  • jQuery children() 方法
    children()方法返回所选元素的所有直接子元素。
    此方法仅向下遍历单个级别到 DOM 树。
    例子:
    
    
      
    
        
        
        
    
      
    
      
        
          current element         

    child                            grandchild                    

        
      

    输出:

  • jQuery find() 方法:
    jQuery find() 方法返回所选元素的后代元素,一直到最后一个后代。
    示例 2:
    
    
      
    
        
        
        
    
      
    
      
        
          current element         

    child             grandchild         

        
         

    输出: