每次在 iframe 中访问新链接时,我都想调整 iframe 的大小。
我有一个 wordpress 博客,并使用这个 iframe 在页面上添加了论坛。每次单击该博客上的链接时,我都希望它调整大小。
我用谷歌搜索,但没有发现任何相关内容。
这是我用于调整大小的代码
<script type="text/javascript">
function sizeIFrame() {
var helpFrame = jQuery("#ifm");
var innerDoc = (helpFrame.get(0).contentDocument) ? helpFrame.get(0).contentDocument : helpFrame.get(0).contentWindow.document;
helpFrame.height(innerDoc.body.scrollHeight + 35);
}
</script>
<iframe id="ifm" src="..." width="100%" frameBorder="0" onload="sizeIFrame();" scrolling="no"></iframe>
谢谢!