일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- 아두이노
- oracle
- 설치
- html5
- librecad
- MSSQL
- 리브레캐드
- mysql
- 오라클
- 설정
- jsp
- Unity
- 스크래치
- 잡토이 메이킹 코딩 학원
- 잡토이
- jobtoy
- Android
- Spring Security
- 예제
- 안드로이드
- s4a
- 강좌
- 시작하기
- tomcat
- 유니티
- 코딩
- 라즈베리파이
- 운정
- 파주
- 톰캣
- Today
- Total
랩제이
iframe 사이즈 늘리기(3) 본문
다른 페이지로 이동하였다가 사이즈가 변경되었더라도
다시 사이즈를 조정한다.
- 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);
}
[출처] iframe 사이즈 늘리기(3)|작성자 들닢
'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 |