1. 程式人生 > >jQuery解決iframe高度隨內容自動調整

jQuery解決iframe高度隨內容自動調整

$(function(){
//iframe高度隨內容自動調整  
$('.main').load(
	function(){
		var h = $(this).contents().find("body").height();//別的參考不對
		$(this).height(h);
	}  
);  
});

index:

<div class="page">
<div class="top">top</div>
<iframe class="main" src="test_frame.html" frameborder="0" width="500"></iframe>
</div>

iframe:
<div class="page1">page1</div>


來源於:http://blog.csdn.net/huhai463127310/article/details/5040182