HTML:

 <iframe ></iframe>

JS:

window.onresize = function () { changeFrameHeight(); }
$(function () {
    changeFrameHeight();
});

function changeFrameHeight() {
    var ifm = document.getElementById("mainiframe");
    ifm.height = document.documentElement.clientHeight - 56;
}

相关文章:

  • 2022-12-23
  • 2021-04-19
  • 2021-09-16
  • 2021-06-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案