Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery 遍历 - 后代节点


使用 jQuery,您可以遍历 DOM 树以查找元素的后代。

后代是指子元素、孙元素、曾孙元素等等。


遍历 DOM 树

用于遍历 DOM 树的两个有用的 jQuery 方法是

  • children()
  • find()

jQuery children() 方法

children() 方法返回所选元素的所有直接子元素。

此方法仅遍历 DOM 树向下的一级。

以下示例返回每个 <div> 元素的直接子元素的所有元素

示例

$(document).ready(function(){
  $("div").children();
});
亲自试一试 »

您还可以使用可选参数来过滤对子元素的搜索。

以下示例返回所有 <p> 具有类名 "first" 的元素,它们是 <div> 的直接子元素

示例

$(document).ready(function(){
  $("div").children("p.first");
});
亲自试一试 »


jQuery find() 方法

find() 方法返回所选元素的后代元素,一直到最后一个后代。

以下示例返回所有 <span><div> 的后代的元素

示例

$(document).ready(function(){
  $("div").find("span");
});
亲自试一试 »

以下示例返回 <div> 的所有后代

示例

$(document).ready(function(){
  $("div").find("*");
});
亲自试一试 »

jQuery 练习

通过练习测试自己

练习

使用 jQuery 方法获取 <div> 元素的所有直接子元素。

$("div").();

开始练习


jQuery 遍历参考

有关所有 jQuery 遍历方法的完整概述,请访问我们的 jQuery 遍历参考.


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.