“Фильтр htmlCollection” Ответ

Фильтр htmlCollection

const existingElements = document.querySelectorAll(".chapter-list-item");

const chapters = Array.from(existingElements)
  .filter(chapter => !chapter.classList.contains("active"))

console.log("Found elements:")
for (const chapter of chapters) {
  console.log(chapter.textContent, chapter.className)
}
Important Ibex

Фильтр htmlCollection

const chapters = document.querySelectorAll(".chapter-list-item:not(.active)");

console.log("Found elements:")
for (const chapter of chapters) {
  console.log(chapter.textContent, chapter.className)
}
Important Ibex

Ответы похожие на “Фильтр htmlCollection”

Смотреть популярные ответы по языку

Смотреть другие языки программирования