gpt4 book ai didi

javascript - querySelectorAll - 如何只获取某个 div 中的元素

转载 作者:行者123 更新时间:2023-12-04 16:26:03 25 4
gpt4 key购买 nike

我想限制这个选择器,只给我一个 id 为“divId1”的 div 内部的结果

var polys = document.querySelectorAll('polygon,polyline');

我怎样才能做到这一点?

最佳答案

试试空间运算符:

var polys = document.querySelectorAll('#divId1 polygon, #divId1 polyline');

See MDN's page on selectors了解更多。

关于javascript - querySelectorAll - 如何只获取某个 div 中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18404211/

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