zoukankan      html  css  js  c++  java
  • 获得iframe 高度 ,各种浏览器

    function  fuFunctiondan(){
        var frm=$("#z_div");
                var iframeHeight=0;
                if (navigator.userAgent.indexOf("Firefox")>0) { // Mozilla, Safari, ...  
                    iframeHeight=window.frames[0].document.body.scrollHeight;
                    alert(iframeHeight);
                    iframeHeight=parseInt(iframeHeight)+0;
                    frm.height(iframeHeight);
                    $("#MainFrame").height(iframeHeight);
                } else if (navigator.userAgent.indexOf("MSIE")>0) { // IE  
                    iframeHeight=MainFrame.document.body.scrollHeight;//IE这里要用,不能用obj,切记  
                    iframeHeight=parseInt(iframeHeight)+parseInt(0);
                    frm.height(iframeHeight);
                    $("#MainFrame").height(iframeHeight);
                }else {
                     iframeHeight=MainFrame.document.body.scrollHeight;
                     iframeHeight=parseInt(iframeHeight)+0;
                     frm.height(iframeHeight);
                     $("#MainFrame").height(iframeHeight);
                }
    }
    z_div为iframe 外层div 的id,
    MainFrame为iframe 的id ;


  • 相关阅读:
    python二维数组切片
    [转载]MIPS常用指令及实例
    使用vim编程步骤
    数组指针和指针数组
    线程基础
    顶层const和底层const
    递归调用
    输出流
    C++代码规范
    I/O流
  • 原文地址:https://www.cnblogs.com/zhangchenglzhao/p/3144512.html
Copyright © 2011-2022 走看看