0

我在 DIV 中有一个 IFrame,其 SRC 属性由 JS 函数动态设置。因此,如果 src="file.jsp",则一个 onload 函数(在 file.jsp 的主体内部)包含对 file.jsp 中某些样式的调整,一旦触发了该函数,它就会将 IFrame 悬停在整个网页上通过加载。即,iframe 遍布整个网页。请让我知道在 onload 函数之后需要做些什么来保留 IFrame 位置。

我的onload函数中的代码如图

function load() {
    var url = window.location.href;
    if (url.indexOf('iip') > -1) {
        document.getElementById('peLibraryTreeDiv').style.width = "596px";
        parent.document.getElementById('privateEquityDiv').style.width =
                "96.9%";
        parent.document.getElementById('privateEquityDiv').style.top =
                "77px";
    }
}
4

1 回答 1

0

这是一个完全有效且有效的示例

<!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>
        <script>
        function changeIframe(newLocation){
            document.getElementById("myIframe").src=newLocation;
        }
        </script>
    </head>
    <body onload="changeIframe('http://www.example.com')">
        <div style="width:650px;float:auto;border:1px dotted #cccccc;">
            <iframe id="myIframe" src="http://www.ebay.co.uk/" width="100%" height=750px marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=1 scrolling=auto>
              <p>Your browser does not support iframes.</p>
            </iframe>
        </div>
    </body>
</html>

请注意,某些网站不能作为 src 添加到像http://www.google.com这样的 iframe 中(不知道为什么,我在 SO here can't add google.com as src to an IFrame上提出了问题)

于 2012-08-27T11:47:28.527 回答