Javascript Div 人口
我的网页上有两个 DIV 元素。如果 DIV A 的内部 HTML 是通过不受我控制的第三方脚本添加的,我想删除 DIV B 的内部 html。
在 JS 中实现这一目标的最佳方法是什么?
I have two DIV elements on a webpage. I want to remove inner html of DIV B, if inner HTML of DIV A is added via a third party script which is not under my control.
What is the best way to achieve that in JS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您将内部 HTML 应用于DIV id=a
时,您可以删除DIV id=b
的内部 html 吗?或者,如果不可能,您可以可以用计时器跟踪
DIV id=a
的innerHTML并查看它何时被填充:请注意,html结构必须如下所示:
IE 没有空格。
You could just remove inner html ofDIV id=b
when you apply inner HTML toDIV id=a
?Or if that's not possible, you could track the innerHTML of
DIV id=a
with a timer and see when it gets populated:Note that the html structure must be like this:
<div id="a"></div>
I.E. no whitespace.