我有一个获取元素ID并找到其parentNode
的函数,现在我想在该string
中查找所有ID以相同parentNode
开头的元素。
有什么功能或方法可以找出答案吗?
我正在尝试:
var allElements = document.querySelectorAll('*[id^="someString"]');
但这会返回整个文档中的元素列表,但我只想从相同的
parentNode
中获取元素。请帮忙!
最佳答案
var elements = myElement.parentNode.querySelectorAll('*[id^="someString"]');
关于javascript - 如何获得“parentNode”中以相同字符串开头的所有元素?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17564416/