我使用iframe在我的应用程序中嵌入一个网站并使用iframe resizer库。
<iframe id="iframeContainer" class="iframeContainer" src="mysite.com" width="100%" scrolling="no" ></iframe>
和代码脚本
iFrameResize({
log:true,
autoResize: true,
resizeFrom: 'child',
sizeWidth:false,
checkOrigin:false,
minWidth: 1200,,
heightCalculationMethod: "max"
});
我希望在加载父页面后获得height
内容mysite.com
,但我想到了一种方法。
答案 0 :(得分:0)
您可以使用resizeCallback。
var iFrameHeight;
iFrameResize({
log:true,
minWidth: 1200,
heightCalculationMethod: "max",
resizeCallback: function(iFrameData) {
iFrameHeight = iFrameData.height;
}
});