我在 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";
}
}