我在访问作为加载到 iframe 中的页面的一部分的框架时遇到问题。框架嵌套在多个框架集中。
我的 html 看起来像这样:
<iframe name="sourceframe" src="siteindex.html">
#document <-- this appears in the dom tree. Not sure if it's relevant.
<html>
<head></head>
<frameset>
...other frames
<frameset>
<frame name="targetframe" src="sitesubpage.html">
...I want to access this frame and replace the contents with a different html page...
</frame>
</frameset>
</frameset>
</html>
</iframe>
我已经阅读了类似的问题,其中没有一个有我可以开始工作的解决方案。
任何建议将不胜感激。