iframe 刷新

来源:互联网 发布:mac系统怎么解压缩 编辑:程序博客网 时间:2024/05/16 19:02

 <iframe id="frame_content" src="iframe_b.html" scrolling="no" frameborder="0" onload="this.height=100"></iframe>

 <script type="text/javascript">

 function reinitIframe(){

var iframe = document.getElementById("frame_content");

 try{

 var bHeight = iframe.contentWindow.document.body.scrollHeight;

 var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;

var height = Math.max(bHeight, dHeight);

 iframe.height = height;

 }catch (ex){}

}