Written by
java-style
on
on
아이프레임 세로 자동 리사이징
아이프레임 세로 자동 리사이징
반응형
아이프레임 세로 자동 리사이징
1. 부모창에서 호출
parent.resizeFrame();
2. js
// 아이프레임 세로 자동 리사이징 (세로값을 자동으로 추출하여 스크롤바 생기지 않음)
function resizeFrame() {
var the_height = document.getElementById('iframe').contentWindow.document.body.scrollHeight;
document.getElementById('iframe').height = the_height;
//alert(the_height);
document.getElementById('iframe').style.overflow = "hidden";
}
2. html
반응형
from http://albju.tistory.com/17 by ccl(S) rewrite - 2021-12-27 05:02:23