[자바스크립트] iframe height 안에 내용 사이즈에 맞게 사용하기 (100% 사용하기)
류명운
·2015. 12. 1. 22:42
반응형
[자바스크립트] iframe height 안에 내용 사이즈에 맞게 사용하기 (100% 사용하기)
사용 방법 1) 스크립트
<script language="JavaScript"> function autoResize(obj){ var newheight; var newwidth; if(obj.contentDocument){ newheight = obj.contentDocument.documentElement.scrollHeight+30; newwidth = obj.contentDocument.documentElement.scrollWidth+30; } else { newheight=obj.contentWindow.document.body.scrollHeight+30; newwidth=obj.contentWindow.document.body.scrollWidth+30; } obj.height= newheight + "px"; obj.width= newwidth + "px"; } </script>
사용 방법 2) 바디
<iframe src="test.html" id="iframe1" marginheight="0" frameborder="0" onLoad="autoResize(this);" />
반응형
'삶의 늪에 들어 가기 전 > 정리중(미정리)' 카테고리의 다른 글
[네트워크 프로그래밍2]GUI 멀티 채팅 예제 분석하기(플로우차트) (0) | 2015.12.07 |
---|---|
[웹 시스템 개발]기말 프로젝트(KBUSCS 기능 정리) (0) | 2015.12.03 |
한국성서대학교 15년도 2학기 15주차 묵상지[한국성서대 묵상지] (0) | 2015.12.01 |
[Eclipse][DB Error] 전방향 전용 결과 집합에 부적합한 작업이 수행되었습니다 : last 해결방법 (0) | 2015.11.30 |
[oracle dbcp] 오라클DB 커넥션풀 설정하기 (2) | 2015.11.29 |