iframe高度自动适应宽高的js (兼容FF)

来源:互联网 发布:投资理财系统源码 编辑:程序博客网 时间:2024/05/07 02:22
在机票版本中应用了iframe,但FF对iframe的高度解析有问题,因此调用以下JS
function SetCwinHeight(){var xunzou=document.getElementById(“xunzou”); //iframe idif (document.getElementById){if (xunzou && !window.opera){if (xunzou.contentDocument && xunzou.contentDocument.body.offsetHeight){xunzou.height = xunzou.contentDocument.body.offsetHeight;}else if(xunzou.Document && xunzou.Document.body.scrollHeight){xunzou.height = xunzou.Document.body.scrollHeight;}}}}HTML调用<iframe  width=”100%” id=”xunzou” onload=”Javascript:SetCwinHeight()” height=”1″ frameborder=”0″ src=”地址” scrolling=”no”></iframe>

原创粉丝点击