IT/html_css
iframe resize, resizing, 리사이징.
당양부부34
2015. 4. 27. 16:49
iframe에 열리는 페이지의 길이를 알아내어 iframe의 크기를 바꿔주는 소스입니다..
========================================================================================
도메인이 다른 문서를 iframe에 링크할 경우 iframe resizable시 "권한이 없습니다"라는 문구가 뜹니다.
이런경우 iframe 에 onLoad 하지 말고 iframe내 문서의 body 문에 아래와 같은 스크립트를
사용하여 iframe을 resizable 시키도록 합니다.
# iframe 링크 문서
<body onLoad="resizeHeight();">
function resizeHeight()
{
// iframe reSizable 도메인 다른 곳에서 링크 걸경우
h = document.body.scrollHeight + 10;
resizeTo(602, h);
}
========================================================================================
도메인이 동일한 문서의 일 경우는 아래 요약글에 쓰여진 스크립트를 사용해 주세요!!