使用Javascript调整Iframe高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Javascript调整Iframe高度相关的知识,希望对你有一定的参考价值。

Resize iframe height. This means if the content of your iframe is longer than the iframe height, and the iframe doesn't have a scrollbar, you can resize the height of the iframe so the content is viewed.
  1. //set the document domain
  2. document.domain = 'xxxx.com';
  3.  
  4. //resize the iframe
  5. function parent_resize()
  6. {
  7. parent.resize_iframe("idofiframe", document.getElementById('wrapper').offsetHeight);
  8. }
  9.  
  10. <body onload="parent_resize();">
  11. <div id="wrapper">
  12. .....
  13. </div>

以上是关于使用Javascript调整Iframe高度的主要内容,如果未能解决你的问题,请参考以下文章

javascript 调整iframe宽度和高度

JavaScript 根据内容调整iframe高度

iframe调用子页面按子页面的内容自动调整高度

jQuery解决iframe高度自适应代码

将 iframe 内容高度设置为动态自动调整大小

Angularjs动态调整iframe高度