抱歉,如果这个问题令人困惑——我是 JavaScript 的新手,甚至不知道如何提出这个问题……这是我想出的理想结果:
当任何 Foo 被鼠标按下时,我想给所有 Bars 一个类,然后当 Foo 被鼠标按下时删除该类。我很确定该解决方案会使用querySelectorAll,forEach但这是我所得到的。让我知道这是否需要更多说明,如果这是重复的,请提前致歉。
<div class="foo">When I mousedown/up on this</div>
<div class="foo">When I mousedown/up on this</div>
<div class="bar">Give/remove the 'baz' class to/from this</div>
<div class="bar">Give/remove the 'baz' class to/from this</div>
.foo {
color: blue;
}
.bar {
color: red;
}
.baz {
color: green;
}
呼啦一阵风
相关分类