我有一个高度为534px
的iframe。 Iframe中的内容可以选择minimize
内容,因此内容的高度从534px
更改为20px
。如何使我的Iframe高度动态以适应展示的内部内容?
感谢。
答案 0 :(得分:0)
在您的内容更改(事件/操作)后,执行此操作
function AdjustIframe()
{
YouIframeId.height = YouIframeId.contentWindow.document.body.scrollHeight;
}
<强> Inside your iframe, the change function.
强>
function someChangeEvent()
{
//at end of your code
parent.AdjustIframe();
}