gpt4 book ai didi

javascript - 如何排除 querySelectorAll() 中的特定类名?

转载 作者:IT王子 更新时间:2023-10-29 03:20:16 24 4
gpt4 key购买 nike

如何排除具有特定类名的标签元素?

<span class="test" />
<span class="test asd" />

document.querySelectorAll('span.test'); //how to exclude all spans with "asd" as class name?

最佳答案

使用:not CSS 伪类:

document.querySelectorAll('span.test:not(.asd)');

关于javascript - 如何排除 querySelectorAll() 中的特定类名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25605367/

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