gpt4 book ai didi

php - 允许动态高度的 iframe 替代方案有哪些?

转载 作者:行者123 更新时间:2023-12-01 08:00:21 24 4
gpt4 key购买 nike

我试图为 iframe 设置动态高度,但总是失败;我正在寻找一个 iframe 替代方案,它可以从网页检索内容并将其显示在具有动态高度的持有者页面中。有什么建议吗?

最佳答案

将此添加到您的 <head>部分

<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>

并将您的 iframe 更改为:

<iframe name="Stack" src="http://stackoverflow.com/" frameborder="0" scrolling="no" id="iframe" onload='javascript:resizeIframe(this);' />

关于php - 允许动态高度的 iframe 替代方案有哪些?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20263033/

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