在IE6和IE7中的IFrame中加载PDF

时间:2010-06-22 17:23:25

标签: html css pdf cross-browser

我正在弹出窗口内的IFrame中加载PDF。

我在IE6和IE7中正确加载PDF - 但是我试图解决这个问题。

当我在IE7中的IFrame中加载PDF,并且我从窗口右侧水平调整窗口大小时,PDF不缩小窗口将调整大小到我无法看到PDF的整个宽度的位置。如果我从窗口的底角调整大小,PDF会水平调整大小/缩放。

在IE6中,当我从窗口右侧水平调整大小时,PDF可以正确地重新缩放,也可以从底部角落重新调整。

当我从IE7的弹出窗口右侧调整大小时,知道为什么PDF没有按比例缩小?非常感谢任何帮助。

以下是IFrame的HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
    <style type="text/css">
      * {
        padding: 0;
        margin: 0;
        }
        html, body {
     width:100%;
        height: 100%;
     overflow:hidden;
        }
        #container{
        min-height: 100%;
        }
        * html #container {
        height: 100%;
        }
    </style>

</head>
<body>
    <form id="frmMine" runat="server">
        <div>
            <iframe style="min-height:500px;min-width:100%; max-width:100%;height:auto !important;" id="iframe" runat="server"></iframe>
        </div>
    </form>
</body>
<script type="text/javascript">
        function resizeIframe() {
            var height = document.documentElement.clientHeight;
            height -= document.getElementById('iframe').offsetTop;
            height -= 5;
            document.getElementById('iframe').style.height = height + "px";
        };
        document.getElementById('iframe').onload = resizeIframe;
        window.onresize = resizeIframe;
    </script>
</html>

1 个答案:

答案 0 :(得分:1)

不支持min- / max-的IE6可能会解释这种差异。至于实际完成你想要的东西,你有没有理由不使用* { width: 100%; height: 100%; overflow: hidden; margin: 0; }