JS 获取iframe内容高度的方法
时间:2015-11-12 阅读:次 QQ群:182913345
js 获取 iframe 内容的高度,并动态设置 iframe 的高度,让其高度自适应,代码如下:
<iframe src="/test.html" frameborder="0" scrolling="no" id="iframepage" onLoad="iFrameHeight()" style="width:100%;"></iframe> <script> function iFrameHeight(){ var ifm= document.getElementById("iframepage"); var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument; if(ifm != null && subWeb != null) { ifm.height = subWeb.body.scrollHeight; } } </script> |
上一篇:JS获取浏览器滚动条位置实例代码
下一篇:详解Nofollow标签真面目