我们如何使用 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>

更新于: 18-Dec-2019

206 次浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告