Home  >  Article  >  Web Front-end  >  Iframe automatically adapts to the height of the page sample code_javascript skills

Iframe automatically adapts to the height of the page sample code_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:58:06999browse

复制代码 代码如下:

function SetCwinHeight(obj) {
var cwin = obj;
if (document.getElementById) {
if (cwin && !window.opera) {
if (cwin.contentDocument && cwin.contentDocument.body.offsetHeight)
cwin.height = cwin.contentDocument.body.offsetHeight 30;
else if (cwin.Document && cwin.Document.body.scrollHeight)
cwin.height = cwin.Document.body.scrollHeight 30;
}
}
}

复制代码 代码如下:


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn