DS's『 행복합시다 』

Carpe Programming/javascript

[iframe 크기 조정] iframe 안의 컨텐츠 사이즈만큼 창 크기 수정

nolite 2012. 10. 8. 14:02
반응형

  function resizeIframe(obj) {
   if (obj.contentDocument) {
       obj.height = obj.contentDocument.body.offsetHeight;
      } else {
          obj.height = obj.contentWindow.document.body.scrollHeight;
      }
  }

 

 

<iframe name="contentFrame${cnt.index}" src="<c:url value='${list.url}'/>" style="width:220px;" frameborder="0" scrolling="no" onload="resizeIframe(this);"></iframe>

728x90
반응형