programming/java

iframe 사이즈 늘리기(3)

labj 2012. 3. 20. 21:01

다른 페이지로 이동하였다가 사이즈가 변경되었더라도

다시 사이즈를 조정한다.

 

- ex1.html

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

 

<iframe  border="0" src="ifPage.html" framespacing="0" width="624" height="150" name="booking" id="booking" noresize scrolling="no" marginwidth=0 marginheight=0 frameborder=0  onload="resizeIFrame('booking');" ></iframe>   

 

 

- ifPage.html

 

function init() {

  var the_height = 0;
  the_height = document.getElementById("page_content").offsetHeight
  parent.frames.resizeIFrameHeight("booking", the_height);

}

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

Map iterator 예제  (0) 2012.03.20
톰캣6 windows 64bit 설치  (0) 2012.03.20
textNode 변경하기  (0) 2012.03.20
data 중복 제거  (0) 2012.03.20
내가 만든 bar Chart  (0) 2012.03.20