// 此方法适用于未知iframe高度时调用,获取iframe内容的高度动态设置。
function setIframeHeight() {
  let iframe = document.getElementById("content");
  try {
    let bHeight = iframe.contentWindow.document.body.scrollHeight;
    let dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
    let height = Math.max(bHeight, dHeight);
    iframe.height = height;
    } catch (ex) {console.log(ex)}
  }
// 页面加载完成或合适的时间调用此方法即可。
setIframeHeight()

你可能感兴趣的:(