gpt4 book ai didi

javascript - 如何在包含页面内调整 iframe 的大小?

转载 作者:数据小太阳 更新时间:2023-10-29 06:08:59 25 4
gpt4 key购买 nike

我想访问我的页面所在的 iframe 并调整它的大小。顺便说一句,我是用 javascript 做的。

It's something like parent and height or offsetHeight.

<iframe src="mypage.asp" height="400" width="400" ></iframe> 

在 mypage.asp 中我做了类似这样的事情:

var h = // new height;
parent.height = h;

但这还不好吗?还有谁知道更多?

最佳答案

如果您想从加载到您的 iframe 的页面中调整 iframe 的大小,请试试这个。它似乎至少在本地有效:

function doIt() {
var elem = window.parent.document.getElementById('myIframe'); // the id of your iframe of course
elem.style.height = '40em';
}

我假设页面和您的 iframe 都是您的并且具有相同的“来源”。

关于javascript - 如何在包含页面内调整 iframe 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2506457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com