2022-12-15_iframe

2022-12-14  本文已影响0人  微笑碧落

前言

1. 使用

<iframe name="data-iframe" id="data-iframe" width="100%" height="100%" frameborder="0"></iframe>
<li><a href="pssvez.html" target="data-iframe">电源侧电压为0的终端清单</a></li>

2.iframe高度,宽度自动修改

<iframe class="p-2 bd-highlight flex-grow-1" src="pssvez.html" id="iframeHome" onload="iFrameHeight()"></iframe>
function iFrameHeight() {
    var ifm = document.getElementById("iframeHome");
    ifm.height=document.documentElement.clientHeight-50;
    ifm.width=document.documentElement.clientWidth-280;
}
上一篇 下一篇

猜你喜欢

热点阅读