在未注入 DOM 的 DIV 中按 id 查找元素
我内存中有一个 DOM 元素,尚未注入到页面 DOM 中。 我想通过 id 在此 DOM 元素内查找元素,但 document.getElementById 不起作用,因为该元素尚未位于页面 DOM 中。
关于如何做到这一点有什么想法吗?
PS
- 我知道一种方法是使用 element.querySelector() 但从 IE7 开始 不支持,我不能。
- 不使用 Jquery
I have a DOM element in memory that is yet to be injected in the page DOM.
I want to lookup an element by id inside this DOM element but document.getElementById wont work as the element is not yet in the page DOM.
Any ideas on how to do this?
P.S.
- I know one approach is to use
element.querySelector() but since IE7
doesnt support it, I can't. - Not using Jquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
浏览器是 IE 还是非 IE 有所不同。无论哪种情况,您都应该使用
XPath
。对于 Firefox 和其他兼容的浏览器,您可以使用evaluate
和 Xpath 查询,对于 IE,您可以使用selectNodes
。因此,它们在这里并排:然后对元素执行您需要执行的操作。我有点尴尬的是 IE 实际上让这一点变得更加清晰,但每只狗都有它的一天。
It differs on if the browser is IE or non-IE. In either case you should use
XPath
. For Firefox and other compliant browsers, you would useevaluate
and the Xpath query, with IE, you useselectNodes
. So here they are side by side:And then do what you need to do with the element. I'm a bit embarrassed that IE actually makes this more clear cut, but every dog has it's day.
如果您使用 jQuery,则可以编写
$('#someId', divElement)
。If you're using jQuery, you can write
$('#someId', divElement)
.