programming/jsp

iframe 사이즈 늘리기(1)

labj 2012. 3. 21. 13:08

1. parent page

<script type="text/javascript">
 function resizeIFrame(name) {
  var the_height = document.getElementById(name).contentWindow.document.body.scrollHeight;
  document.getElementById(name).height= the_height;
 }
</script>

<iframe  height="16" width="604" boarder="0" src="iframe.jsp" name="iframeId" id="iframeId"  onload="resizeIFrame('iframeId');" ></iframe>

 

브라우저에 상관없이 parent page에서 height는 정확하게 가져오는데 width는 좀 어렵다.

그래서 width는 <iframe width="xxx"></iframe> 고정한다. 그러면 높이는 자동으로 맞추어준다.

 

2. child page

그냥 기존대로 ...

'programming > jsp' 카테고리의 다른 글

innerHTML  (0) 2012.03.21
parent에서 iFrame함수 호출하기  (0) 2012.03.21
뭐니뭐니해도 기본이 최고인거 같다 -- select box 만들기  (0) 2012.03.21
javascript debug  (0) 2012.03.21
prototype - Event.observe  (0) 2012.03.21