Web开发——JavaScript库(jQuery遍历——同胞)

Posted zyjhandsome

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Web开发——JavaScript库(jQuery遍历——同胞)相关的知识,希望对你有一定的参考价值。

  遍历图解:

技术分享图片

1、jQuery 遍历 - 同胞

  同胞拥有相同的父元素。

  通过 jQuery,您能够在 DOM 树中遍历元素的同胞元素。

1.1 在 DOM 树中水平遍历

  有许多有用的方法让我们在 DOM 树进行水平遍历:

  • siblings():返回被选元素的所有同胞元素。
  • next():返回被选元素的下一个同胞元素。该方法只返回一个元素。
  • nextAll():返回被选元素的所有跟随的同胞元素。
  • nextUntil():返回介于两个给定参数之间的所有跟随的同胞元素。
  • prev():
  • prevAll():
  • prevUntil():

  prev(), prevAll() 以及 prevUntil() 方法的工作方式与上面的方法类似,只不过方向相反而已:它们返回的是前面的同胞元素(在 DOM 树中沿着同胞元素向后遍历,而不是向前)。

1.2 举例

  举例1(siblings() 方法,下面的例子返回 <h2> 的所有同胞元素):

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <!--<meta charset="utf-8">-->
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("h2").siblings().css({"color":"red","border":"2px solid red"});
15             });
16         </script>
17 
18         <style>
19             .siblings * { 
20                 display: block;
21                 border: 2px solid lightgrey;
22                 color: lightgrey;
23                 padding: 5px;
24                 margin: 15px;
25             }
26             
27         </style>
28     </head>
29     
30     <body class="siblings">
31         <div>div (父)
32             <p>p</p>
33             <span>span</span>
34             <h2>h2</h2>
35             <h3>h3</h3>
36             <p>p</p>
37         </div>
38 
39     </body>
40 </html> 

  输出结果:

技术分享图片

  举例2(siblings() 方法,下面的例子返回属于 <h2> 的同胞元素的所有 <p> 元素):

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <!--<meta charset="utf-8">-->
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("h2").siblings("p").css({"color":"red","border":"2px solid red"});
15             });
16         </script>
17 
18         <style>
19             .siblings * { 
20                 display: block;
21                 border: 2px solid lightgrey;
22                 color: lightgrey;
23                 padding: 5px;
24                 margin: 15px;
25             }
26            
27         </style>
28     </head>
29     
30     <body class="siblings">
31         <div>div (父)
32             <p>p</p>
33             <span>span</span>
34             <h2>h2</h2>
35             <h3>h3</h3>
36             <p>p</p>
37         </div>
38 
39     </body>
40 </html>        

  输出结果:

 技术分享图片

  举例3(next() 方法,下面的例子返回 <h2> 的下一个同胞元素):

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <!--<meta charset="utf-8">-->
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("h2").next().css({"color":"red","border":"2px solid red"});
15             });
16         </script>
17 
18         <style>
19             .siblings * { 
20                 display: block;
21                 border: 2px solid lightgrey;
22                 color: lightgrey;
23                 padding: 5px;
24                 margin: 15px;
25             }
26             
27         </style>
28     </head>
29     
30     <body class="siblings">
31         <div>div (父)
32             <p>p</p>
33             <span>span</span>
34             <h2>h2</h2>
35             <h3>h3</h3>
36             <p>p</p>
37         </div>
38 
39     </body>
40 </html>        

  输出结果:

技术分享图片

   举例4(nextAll() 方法,下面的例子返回 <h2> 的所有跟随的同胞元素):

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <!--<meta charset="utf-8">-->
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("h2").nextAll().css({"color":"red","border":"2px solid red"});
15             });
16         </script>
17 
18         <style>
19             .siblings * { 
20                 display: block;
21                 border: 2px solid lightgrey;
22                 color: lightgrey;
23                 padding: 5px;
24                 margin: 15px;
25             }
26            
27         </style>
28     </head>
29     
30     <body class="siblings">
31         <div>div (父)
32             <p>p</p>
33             <span>span</span>
34             <h2>h2</h2>
35             <h3>h3</h3>
36             <p>p</p>
37         </div>
38 
39     </body>
40 </html>        

  输出结果:

技术分享图片

   举例5(nextUntil() 方法,下面的例子返回介于 <h2> 与 <h6> 元素之间的所有同胞元素):

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <!--<meta charset="utf-8">-->
 5         <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 6         <meta http-equiv="Content-Language" content="zh-cn" />
 7         <title>My test page</title>
 8         
 9         <!--引用jQuery库,src可以直接指向本地下载的jQery库-->
10         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">-->
11         <script src="jquery-3.3.1.js"></script>
12         <script type="text/javascript">
13             $(document).ready(function() {
14                 $("h2").nextUntil("h6").css({"color":"red","border":"2px solid red"});
15             });
16         </script>
17 
18         <style>
19             .siblings * { 
20                 display: block;
21                 border: 2px solid lightgrey;
22                 color: lightgrey;
23                 padding: 5px;
24                 margin: 15px;
25             }
26            
27         </style>
28     </head>
29     
30     <body class="siblings">
31         <div>div (父)
32             <p>p</p>
33             <span>span</span>
34             <h2>h2</h2>
35             <h3>h3</h3>
36             <h4>h4</h4>
37             <h5>h5</h5>
38             <h6>h6</h6>
39             <p>p</p>
40         </div>
41 
42     </body>
43 </html>        

  输出结果:

技术分享图片

2、jQuery 遍历参考手册

  如需了解所有的 jQuery 遍历方法,请访问 jQuery 遍历参考手册

 

以上是关于Web开发——JavaScript库(jQuery遍历——同胞)的主要内容,如果未能解决你的问题,请参考以下文章

Web开发——JavaScript库(jQuery遍历——后代)

Web开发——JavaScript库(jQuery遍历)

Web开发——JavaScript库(jQuery遍历——同胞)

Web开发——JavaScript库(jQuery效果——动画/停止动画)

Web开发——JavaScript库(jQuery HTML——添加/删除 续,需要整合在一起)

Rails Web 框架丢弃 jQuery