JavaScript iframe使用javascript和div innerhtml调整大小以匹配帧源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript iframe使用javascript和div innerhtml调整大小以匹配帧源相关的知识,希望对你有一定的参考价值。

function insertIt() {
var _y = document.getElementById('framediv');
var _x = window.frames[0].document.body.innerHTML;
_y.innerHTML = _x
}
Then, the parent page has a div with the id "framediv" which is placed where the contents of the iframe should appear on the page.
The iframe element is then placed inside the div, like this:

<div id="framediv">
<iframe onload="insertIt();" src="/somewhere/content.htm" frameborder="no" width="555px" scrolling="no">
</div>

以上是关于JavaScript iframe使用javascript和div innerhtml调整大小以匹配帧源的主要内容,如果未能解决你的问题,请参考以下文章

使用 javascript 的 iframe 问题

如何使用 Javascript 访问 iframe 元素?

javasc面向对象编程

是否可以在 iFrame 中使用 JavaScript 获取 iFrame 父页面的引用者?

阻止 iframe 使用 javascript 加载页面

对特定 iframe 使用 javascript 书签 [重复]