방법...1..
<script Language='javascript'>
function reSize() {
try{
var objBody = ifrm.document.body;
var objFrame = document.all["ifrm"];
ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
if (ifrmHeight > 300) {
objFrame.style.height = ifrmHeight
}else{
objFrame.style.height = 300;
}
objFrame.style.width = '100%'
}catch(e){}
}
function init_iframe() {
reSize();
setTimeout('init_iframe()',200)
}
init_iframe();
</script><iframe id='ifrm' src="보여질페이지주소" width="가로크기" height="세로크기" frameborder=0 marginheight=0 marginwidth=0></iframe>
방법2.
<script>
function doResize()
{
container.height = myframe.document.body.scrollHeight;
container.width = myframe.document.body.scrollWidth;
}
</script>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td id="container"><iframe src="your_file.html" name="myframe" width="100%" height="100%" marginwidth="0" marginheight="0" frameborder="no" onload="doResize()"></iframe></td>
</tr>
</table>
'Website 세상 > Web Program' 카테고리의 다른 글
주민번호의 숨겨진 비밀.. (0) | 2008.09.09 |
---|---|
대규모 포털서비스 시스템, 이렇게 구축하고 운영한다. (0) | 2008.09.09 |
iframe 사이즈 자동으로 조절하기 (0) | 2008.09.05 |
홈페이지 접속시 바탕화면 아이콘 만들기 (BaCon) (0) | 2008.09.05 |
'시작' - '실행' 명령어. 알아두면 편리함 (0) | 2008.09.05 |