首页 > 技术文章 > iframe 自适应高度、宽度

Dylanblogs 2015-03-11 17:21 原文

示例:

 <iframe id="zyms" frameborder="0" scrolling="yes" style="width:1000px;" 
onload=" this.height = 0;var fdh = (this.Document ? this.Document.body.scrollHeight : this.contentDocument.body.offsetHeight);
this.height = (fdh > 600 ? fdh : 600);"> </iframe>

 

推荐阅读