我想在我的网站上插入一些主题演示供我的客户查看。 但我无法将iframe高度作为内容高度。 解决方法可能是将iframe高度设置为浏览器高度减去我网站的标题/menù。但我不知道如何实现它。
答案 0 :(得分:0)
尝试在iframe上使用onload事件
fucntion resizeme(elem){
$(elem).width($(elem.contentWindow.document).width())
$(elem).height($(elem.contentWindow.document).height())
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<iframe src="/" onload="resizeme(this)" ></iframe>