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>
ありがとうございました!