iframe自适应子界面高度

 <iframe src ="" id="iframe" width="100%"  onload="changeFrameHeight()" scrolling="no" frameborder="0"></iframe>

function changeFrameHeight() {
var ifm = document.getElementById("iframe");
ifm.height = document.documentElement.clientHeight;
}
window.onresize = function () {
changeFrameHeight();
}

posted on 2017-07-20 10:38  A欣  阅读(188)  评论(0)    收藏  举报

导航