自动设置iframe高度,实现iframe高度自适应

jerry PHP 2015年11月18日 收藏
自动设置iframe高度,供第三方调用,实现iframe高度自适应;
这个可以解决跨域问题。
iframe 如下
  1. <iframe id="showFrame" src="{:C('AuditResource')}" width="100%" height="620" border="0" frameborder="0"></iframe>
iframe 的src地址包含如下代码片段:
  1. <iframe width="0" height="0" style="display: none;" src="http://domain/setIframeHeight?#300" name="iframeA" id="iframeA"></iframe>
  2.  <script type="text/javascript">
  3.         try {
  4.             function sethash() {
  5.                 var hashH = document.documentElement.scrollHeight;
  6.                 var urlC = "http://domain/setheight.html";
  7.                 document.getElementById("iframeA").src = urlC + "#" + hashH + "#" + Math.random();
  8.             }
  9.         } catch (e) { }
  10.     </script>
http://domain/setIframeHeight 的代码如下:
  1.     /**
  2.      *自动设置iframe高度,供第三方调用,实现iframe高度自适应
  3.      */
  4.     public function setIframeHeight() {
  5.         header("Content-type: text/html; charset=utf-8"); 
  6.         echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
  7.         echo '<script type="text/javascript">
  8.             var b_iframe = parent.parent.document.getElementById("showFrame");
  9.             //var app_show_left = parent.parent.document.getElementById("aside_left");
  10.             var hash_url = window.location.hash;
  11.             var hash_width = hash_url.split("#")[1].split("|")[0];
  12.             var hash_height = hash_url.split("#")[1].split("|")[1];
  13.             if(undefined==hash_height) {
  14.                 hash_height = hash_width;
  15.                 hash_width = 0;
  16.             }
  17.             //b_iframe.style.width = hash_width;
  18.             b_iframe.style.height = hash_height+"px";
  19.             </script>';
  20.     }