程序员人生 网站导航

超强兼容iframe自适应大小,放大缩小都可以

栏目:htmlcss时间:2015-04-21 09:03:42
function iFrameHeight() { /*** * ifram自适应大小 * **/ var ifm= document.getElementById("iframepage"); var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentWindow.document; if(ifm != null && subWeb != null) { ifm.height = subWeb.documentElement.scrollHeight; }
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐