IFrame3级页面高度设置

  $(document).ready(function(){
			$("#iframe2").load(function(){
			    var child_page_height = $(this).contents().find("body")[0].scrollHeight;
			    $(this).height(child_page_height);
		        var h = document.body.scrollHeight;
			    window.parent.$("#iframe1").attr("height",h);
		    });
		});	

    在二级页面添加如上代码

你可能感兴趣的:(iframe)