2007. 6. 29. 15:44

iframe 자동크기조절

[소스: frame.html]
<script>
        function syncHeight(el) {
                el = typeof el == 'string' ? document.getElementById(el) : el;
                el.setExpression('height','contentWindow.document.body.scrollHeight+5');
        }
</script>
<iframe name="test" id="test" src="content.html" on-Load="syncHeight(this)"></iframe>
[/소스]

[소스:content.html]
...
이것은 iframe 내용입니다.<br>
이것은 iframe 내용입니다.<br>
이것은 iframe 내용입니다.<br>
이것은 iframe 내용입니다.<br>
<button o-nClick="this.outerHTML='이것은 추가된내용입니다<br>'+this.outerHTML">누르면 내용이 추가됩니다</button>
[/소스]