jQuery::nth-of-type() 选择器
jQuery 中的 :nth-of-type() 选择器用于选择是其父级中的特定类型第 n 个子代的所有元素。
语法
语法如下 −
:nth-of-type(n|even|odd|formula)
其中,n 参数是要匹配每个子代的索引。even 参数选择偶数子代元素,而 odd 则选择奇数子代元素。
示例
让我们现在看一个示例以实现 jQuery :nth-of-type() 选择器 −
<!DOCTYPE html> <html> <head> <style> .one { color: white; background-color: orange; font-size: 16px; border: 2px blue dashed; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p:nth-of-type(3)").addClass("one"); }); </script> </head> <body> <h1>Match Details</h1> <p>One</p> <p>Two</p> <div style="border:1px solid;"> <p>Date: 29th October 2019</p> <p>Timings: 3PM TO 8PM</p> <p>Ground: DY Patil</p> <p> Entry begins 2PM</p> </div><br> <div style="border:1px solid;"> <p>Date: 29th October 2019</p> <p>Timings: 8PM TO 11PM</p> <p>Ground: Eden Gardens</p> <p>Country: India</p> </div> <p>Three</p> </body> </html>
输出
这会生成以下输出 −
广告