0

スクロールバーが不要になるように、その中のコンテンツに基づいて iframe のサイズを縮小/拡大するための簡単な JavaScript ソリューションを知りたいです。

フレームソースはユーザーからの入力に基づいて変更され、それに基づいて iframe のサイズを調整したいと思います。

私が持っているiframeコードは次のとおりです。

<iframe id="edit_add_configuration" src="<?php echo site_url();?>">
        browser does not support this
</iframe>
4

1 に答える 1

2

高さと幅を取得します。

var height = document.getElementById("edit_add_configuration").contentWindow.document.body.scrollHeight;
var width = document.getElementById("edit_add_configuration").contentWindow.document.body.scrollWidth;

iframe のサイズを変更します。

document.getElementById("edit_add_configuration").style.height=height+"px";
document.getElementById("edit_add_configuration").style.width=width+"px";
于 2012-05-24T04:41:32.160 に答える