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 树中横向遍历

jQuery 有很多实用的方法用于在 DOM 树中横向遍历

  • siblings()
  • next()
  • nextAll()
  • nextUntil()
  • prev()
  • prevAll()
  • prevUntil()

jQuery siblings() 方法

The siblings() 方法返回所选元素的所有同级元素。

以下示例返回 <h2> 的所有同级元素

示例

$(document).ready(function(){
  $("h2").siblings();
});
试一试 »

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

以下示例返回 <h2> 的所有同级元素,这些同级元素是 <p> 元素

示例

$(document).ready(function(){
  $("h2").siblings("p");
});
试一试 »


jQuery next() 方法

The next() 方法返回所选元素的下一个同级元素。

以下示例返回 <h2> 的下一个同级元素

示例

$(document).ready(function(){
  $("h2").next();
});
试一试 »

jQuery nextAll() 方法

The nextAll() 方法返回所选元素的所有后续同级元素。

以下示例返回 <h2> 的所有后续同级元素

示例

$(document).ready(function(){
  $("h2").nextAll();
});
试一试 »

jQuery nextUntil() 方法

The nextUntil() 方法返回两个给定参数之间所有后续同级元素。

以下示例返回 <h2><h6> 元素之间的所有同级元素

示例

$(document).ready(function(){
  $("h2").nextUntil("h6");
});
试一试 »

jQuery prev()、prevAll() 和 prevUntil() 方法

The prev()prevAll()prevUntil() 方法的工作原理与上述方法相同,但功能相反:它们返回上一个同级元素(在 DOM 树中沿着同级元素向后遍历,而不是向前)。


jQuery 练习

通过练习来测试自己

练习

使用 jQuery 方法获取 <h2> 元素的所有同级元素。

$("h2").();

开始练习


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.