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

更新于:2019 年 12 月 18 日

206 次浏览

启动您的 职业生涯

完成课程以获取认证

开始
广告