• 利用剪切板实现IFrame跨域自适应高度


    父页:

    <script type="text/javascript">

          /*----------------------------------------------------------'
          '函数名称: ResetIframeHeight()
          '函数功能: Iframe高度自适应函数
          '
          '参数说明:
          '参数名称    参数类型    参数含义
          '无
          '
          '修改人      修改时间    修改摘要
          'zhangzd     2010/06/23  初次创建
          '-----------------------------------------------------------*/
           function ResetIframeHeight()
            {
               try
               {
                 var strText=window.clipboardData.getData('text');      //从剪切板获取iframe嵌套页面中设置的text数据
                 var fraDetail=document.getElementById('fraDetail');    //iframe对象
                 //text数据是否含有frameHeight=的字样
                 if(strText.match(/^frameHeight=\d+$/))
                 {
                   //设置iframe高度
                   fraDetail.style.height=parseInt(strText.match(/\d+/))+'px';
                   //清空剪切板数据
                   window.clipboardData.setData('text','null');
                 }
               }
               catch(e){}
               //设置运行时间
               setTimeout(ResetIframeHeight,500);
            };
            
            ResetIframeHeight();

        </script>

     被嵌套页:

    <body onload="window.clipboardData.setData('text',String('frameHeight='+window.document.body.scrollHeight));">
     

  • 相关阅读:
    Unit Vector Compression
    PT, BPT, VCM
    Major Performance Impacts

    SAH Benchmarks Of Natural History Museum Scene
    图标变换图片---轮播切换
    弹出层--弹框
    Git for windows 中文乱码解决方案
    在CentOS上安装Git
    Git 的基本配置
  • 原文地址:https://www.cnblogs.com/fromchaos/p/1763594.html
Copyright © 2020-2023  润新知