zoukankan      html  css  js  c++  java
  • iframe根据子页面自动调整大小

    iframe根据子页面自动调整大小

     //iframe高度自适应

      function IFrameReSize(iframename) {

      var pTar = document.getElementById(iframename);

      if (pTar) {  //ff

      if (pTar.contentDocument && pTar.contentDocument.body.offsetHeight) {

      pTar.height = pTar.contentDocument.body.offsetHeight;

      } //ie

      else if (pTar.Document && pTar.Document.body.scrollHeight) {

      pTar.height = pTar.Document.body.scrollHeight;

      }

      }

      }

      //iframe宽度自适应

      function IFrameReSizeWidth(iframename) {

      var pTar = document.getElementById(iframename);

      if (pTar) {  //ff

      if (pTar.contentDocument && pTar.contentDocument.body.offsetWidth) {

      pTar.width = pTar.contentDocument.body.offsetWidth;

      }  //ie

      else if (pTar.Document && pTar.Document.body.scrollWidth) {

      pTar.width = pTar.Document.body.scrollWidth;

      }

      }

      }

      使用方法如下:

      <iframe src="Main.aspx" scrolling="no" frameborder="0" height="100%" id="mainFrame" width="100%" onload='IFrameReSize("mainFrame");IFrameReSizeWidth("mainFrame");'></iframe>

  • 相关阅读:
    hdu6070
    hdu6059( Trie )
    hdu4757(可持久化 Trie )
    csu1216( Trie )
    hdu6058
    hdu6049
    hdu6052
    hdu6041
    hdu1269(有向图强连通分量)
    bzoj2159: Crash 的文明世界
  • 原文地址:https://www.cnblogs.com/linyijia/p/3492900.html
Copyright © 2011-2022 走看看