gpt4 book ai didi

asp.net - 如何更改通过 iframe 插入的 html 页面的宽度以适应页面宽度?

转载 作者:行者123 更新时间:2023-11-28 12:17:46 36 4
gpt4 key购买 nike

我正在使用 iframe 将一个 html 页面用作另一个 html 页面中的页眉。源标题宽度不适合屏幕。有什么方法可以让它适合屏幕吗?

最佳答案

试试这段代码

<script type="text/javascript" >
$(document).ready(function(){
window.setInterval(resizeIframeHeader, 2000);
});

var pastHeight = 0;

function resizeIframeHeader() {
var currentHeight = document.body.scrollHeight;
var currentWidth = document.body.scrollWidth;
if (currentHeight != pastHeight){
pastHeight = currentHeight;
parent.postMessage(document.body.scrollHeight, '*');
}
if (currentWidth != pastWidth){
pastHeight = currentWidth ;
parent.postMessage(document.body.scrollWidth, '*');
}
}
</script>

关于asp.net - 如何更改通过 iframe 插入的 html 页面的宽度以适应页面宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19069102/

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