JS怎么控制IFRAME高度自动适应内容而不出现滚动条
发布网友
发布时间:2022-05-05 08:29
我来回答
共1个回答
热心网友
时间:2022-04-21 08:27
<script type="text/javascript">
function setHeight(){
var iframe = document.getElementById("iframe_id");
try{
var aHeight = iframe.contentWindow.document.body.scrollHeight;
var bHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(aHeight, bHeight);//取最高值;
iframe.height = height;
}catch (e){}
}
</script>
在iframe中把height="XXX"不要 加入onload="setHeight()"