使用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.
//set the document domain document.domain = 'xxxx.com'; //resize the iframe function parent_resize() { parent.resize_iframe("idofiframe", document.getElementById('wrapper').offsetHeight); } <body onload="parent_resize();"> <div id="wrapper"> ..... </div>
以上是关于使用Javascript调整Iframe高度的主要内容,如果未能解决你的问题,请参考以下文章