Page 1 of 1

iframe 이 작동오류가 나네요?

Posted: 2008 07 14 15:48 51
by ff초짜
iframe이 작동오류가 나네요?

ie에서는 제대로 열리는데,
ff에서는 오른쪽, 아래쪽으로열리다 맙니다.

Code: Select all

<SCRIPT LANGUAGE="JavaScript">
<!--
function resizeIframe(fr) {
                fr.setExpression('height',aaa.document.body.scrollHeight);
                fr.setExpression('width',aaa.document.body.scrollWidth);
}
//-->
</SCRIPT>


</head>

<body>
<iframe frameborder="0" id="aaa"  src="./control/body_main.php"  onload="resizeIframe(this)" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" border="0"></iframe>

<body >

Re: iframe 이 작동오류가 나네요?

Posted: 2008 07 14 16:42 29
by hyeonseok
expression과 aaa.~~ 과 같이 바로 접근하는 것은 IE 전용 구문입니다. IE외의 다른 브라우저에서 기능이 잘 작동하게 하기 위해서는 표준 DOM과 호환성 높은 속성을 사용해 주어야 합니다.

http://hyeonseok.com/pmwiki/index.php/Javascript/Iframe 요거 한번 사용해 보세요.