function setIframeHeight(iframe) {
if (iframe) {
var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;
if (iframeWin.document.body) {
iframe.height = window.innerHeight - $(".layui-header").height() - $(".layui-footer").height() - $(".layui-tab-title").height();
}
}
};
window.onload = function () {
setIframeHeight(document.getElementById('wholeAnalysis'));
};
前端——进入页面设置iframe自适应高度
于 2023-10-05 20:45:00 首次发布