我们如何使用 jQuery 选择器 eq:()?
如果你想选择具有特定索引的元素,则使用 jQuery 选择器 eq()。在此,设置索引号以选择元素。
示例
你可以尝试运行以下代码,以了解如何使用 jQuery 选择器 eq()
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p:eq(1)").css("background-color","red"); }); </script> </head> <body> <h1>Heading 1</h1> <p class="myclass">This is demo text.</p> <p>This is another text.</p> <p>This is demo content</p> </body> </html>
广告