gpt4 book ai didi

html - 通过类名获取第三个 div

转载 作者:行者123 更新时间:2023-11-28 17:18:38 26 4
gpt4 key购买 nike

假设我有以下 HTML

<div class="owl-item"></div>
<div class="owl-item"></div>
<div class="owl-item active"></div>
<div class="owl-item active"></div>
<div class="owl-item active"></div>
<div class="owl-item"></div>

我想选择类名为 active 的第三个 div。我尝试了以下方法:

.owl-item.active:nth-child(3)

但这行不通。在 jQuery 中,这可以使用 $('.owl-item.active').eq(0) 完成,但它是纯 CSS

最佳答案

你可以试试这些

使用jQuery

jQuery(".owl-item.active:eq(2)")

使用javascript

document.querySelectorAll(".owl-item.active")[2]

无论您使用的是什么代码,都对 css 有用

.owl-item.active:nth-child(3)

关于html - 通过类名获取第三个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43016171/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com