office

位置:IT落伍者 >> office >> 浏览文章

深入解析contentWindow, contentDocument


发布日期:2020年02月14日
 
深入解析contentWindow, contentDocument
没有永恆的技术只有变态的需求没有好说的客户只有无奈的开发者如果iframe的出现是一个错误的话iframe里边在来一个iframe那是错上加错神话没有在远古的尘嚣中消失却在怀具的今天不断上演

生活永远是一个大染缸一块白布下去黑布出来一块黑布下去一块七色布出来
contentWindow 兼容各个浏览器可取得子窗口的 window 对象
contentDocument Firefox 支持> ie 的ie支持可取得子窗口的 document 对象
在子级iframe设置 父级 iframe 或 孙级 iframe 高度

复制代码 代码如下:
function showIframeH(){
var parentWin = parentdocumentgetElementById("test");
if(!parentWin) return false;
var sub = parentWincontentWindowdocumentgetElementById("test");
if(!sub) return false;
var thirdHeight = subcontentWindowdocumentbodyoffsetHeight; //第三层 body 对象
subheight = thirdHeight; //设置第二层 iframe 的高度
var secondHeight = xcontentWindowdocumentbodyoffsetHeight; //第二层 body 对象
xheight = secondHeight; //设置第一层 iframe 的高度
//alert(secondHeight);
//alert(body: + xcontentDocumentbodyoffsetHeight + div: + thirdHeight);
}

上一篇:仿Office2003的工具条

下一篇:把网页生成word文档并提供下载