0

我有:

$("#fancybox-manual-b").click(function() {
    $.fancybox.open({
    href : 'iframe.html',
    type : 'iframe',
    padding : 5
    });
});

<li><a class="fancybox fancybox.iframe" href="iframe.html">Iframe</a></li>

但是我想根据用户屏幕的大小调整 iframe 的大小。

我正在尝试类似的东西:

width = $(window).width() -80;
heigth= $(window).height() -80;

这是正确的吗?,如何在代码中使用它?

4

2 回答 2

2

或者,你也可以试试这个..

<script type="text/javascript">
    $(document).ready(function () {
         $("a.iframe").fancybox({
            'width': 800,
            'height': 500,
            'transitionIn': 'elastic',
            'transitionOut': 'elastic',
            'type': 'iframe'
        });
    });
</script>

ND

于 2013-03-12T12:04:08.337 回答
0

尝试这个,

function ResizeIframe(iframe) {
    var iframeBody = (iframe.contentDocument) ? iframe.contentDocument.body : iframe.contentWindow.document.body; 
    var height = (iframeBody.scrollHeight < iframeBody.offsetHeight) ? iframeBody.scrollHeight : iframeBody.offsetHeight;
    height = height + 10;
    $(iframe).height(height);
}

<iframe id="idFrm" src="URL" frameborder="0" clientidmode="Static" scrolling="no"                            height="35px" width="98%" onload="javascript:ResizeIframe(this);"></iframe>

我已经使用它并且在所有浏览器中都像魅力一样工作。称它为你的onload

ND

于 2013-03-12T09:11:44.413 回答