将#content
移至#wrapper
?
的index.html
<iframe id="my-iframe" src="./iframe.html"></iframe>
<div id="content"><p>content</p></div>
Iframe.html的
...
<div id="wrapper"></div>
...
期望的结果:
...
<div id="wrapper">
<div id="content"><p>content</p></div>
</div>
...
普通的JS和jQuery都可以,但普通的JS有点优秀。
答案 0 :(得分:1)
您无法更改其他域中的iframe
,因为这是该元素的用途(不会被您网页上的代码更改)。
如果你控制两个页面,你可以在这里看到:jQuery/JavaScript: accessing contents of an iframe