首页 > 代码库 > iframe自适应高度

iframe自适应高度

function iFrameHeight() {    var ifm = document.getElementById("mainframe");    var subWeb = document.frames ? document.frames["mainframe"].document : ifm.contentDocument;    if (ifm != null && subWeb != null) {        ifm.height = subWeb.body.scrollHeight+15;    }}

 

iframe自适应高度