美文网首页
iframe自适应高度

iframe自适应高度

作者: 娜妹子辣辣妹子娜 | 来源:发表于2017-10-24 15:52 被阅读0次
function setIframeHeight(iframe) {
if (iframe) {
var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;
if (iframeWin.document.body) {
iframe.height = iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight;
}
}
};

window.onload = function () {
setIframeHeight(document.getElementById('external-frame'));
};

相关文章

网友评论

      本文标题:iframe自适应高度

      本文链接:https://www.haomeiwen.com/subject/scqxpxtx.html