반응형
아주 간단해지네요 .ㅋ
function autoResize(i){
var iframeHeight=(i).contentWindow.document.body.scrollHeight; (i).height=iframeHeight+20;
var iframeWidth=(i).contentWindow.document.body.scrollWidth; (i).width=iframeWidth+20;
}
<iframe onload="autoResize(this)" ></iframe>
반응형