gpt4 book ai didi

javascript - 使用 ref 访问元素内的元素

转载 作者:行者123 更新时间:2023-12-02 21:15:08 25 4
gpt4 key购买 nike

<div ref={location} className={style.locations}>
{locations.map(loc => (
<span onClick={onClick}>
{loc.name}
</span>
))}
</div>

我想访问<span>里面<div>与“位置”引用:

const span = location.current.getElementsByTagName("span");
span.forEach(el => {
el.style.display = "none";
})

但我只是收到错误:

span.forEach is not a function

最佳答案

试试这个

[...span].forEach(el => {
el.style.display = "none";
})

关于javascript - 使用 ref 访问元素内的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60992748/

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