맛집 여행 캠핑 일상 생활

jQuery iframe height 를 자동으로 변경 본문

JAVASCRIPT

jQuery iframe height 를 자동으로 변경

영은파더♥ 2016. 5. 26. 10:02

jQuery iframe height 를 자동으로 변경



iframe 안의 문서가 변경될 때마다 캐치해서 자동으로 높이를 변경


$('iframe').load(function(){

var h = this.contentWindow.document.body.offsetHeight;

$(this).height(h);

});


$('iframe').contents().height() 대신에 위의 this.contentWindow.document.body.offsetHeight 이 iframe body의 정확한 높이값이다.


첫번째 호출때의 높이는 둘다 같으나


$(this).contents().height() == $(this.contentWindow.document).height()


그 뒤로 변경될때는 값이 달라진다는 것을 주의해야 한다.


Trackback : | Comments :