gpt4 book ai didi

javascript - 在 HTMLCollection 中获取具有特定(唯一)类的元素索引

转载 作者:行者123 更新时间:2023-11-30 19:07:20 26 4
gpt4 key购买 nike

在标题中。

HTML:

<div class="active"></div>
<div></div>
<div></div>

Javascript( Vanilla ):

// source HTML collection, only get the elements index which has the class "active"
let theCollection = document.querySelectorAll('div');

// related HTML collection
let anotherCollection = document.querySelectorAll('div .anotherClass');
// adding the class the corresponding element
theCollection[index].classList.add('active');

我需要获取的是当前在 theCollection 中具有 active 类的元素的索引。

最佳答案

为了完成你的任务:

"What I need to get is the index of the element which currently has the active class within theCollection."

您可以遍历 div 并检查哪个 div 具有事件类。请运行代码进行验证。

document.querySelectorAll('div').forEach((item, index) => {
if (item.classList.contains('active')) {
document.getElementById('showActiveIndex').textContent = `index is ${index}`;
}
})
<div>zero</div>
<div>one</div>
<div class="active">two</div>
<div>three</div>
<hr />
<div id="showActiveIndex"></div>

关于javascript - 在 HTMLCollection 中获取具有特定(唯一)类的元素索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58859109/

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