打开它时,获取iframe高度作为jquery模式弹出窗口

时间:2014-02-12 12:44:29

标签: javascript jquery css iframe

我想通过模态弹出窗口显示iframe。这是我的代码:

$.modal('<iframe src="../_userctrlwrappers/mypage.aspx" width="360" style="border: 0;">',
            {
                escClose: true,
                opacity: 75
            });

如何检测mypage.aspx的高度,以便我可以将其值传递给$.modal

1 个答案:

答案 0 :(得分:1)

您需要在加载iframe时获取内容高度。我想你还需要在加载这个iframe时显示弹出窗口。

$('iframe').load(function() {
this.style.height =
this.contentWindow.document.body.offsetHeight + 'px';
});