我似乎在使用Google Chrome时遇到iFrame调整大小问题。
> <script language="javascript" type="text/javascript">
function resizeIframe(obj)
{
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<
那是在我的标题中。
> <iframe id="content" name="content" frameborder="0" scrolling="no" width="950px" src="html/index2.html" onload='javascript:resizeIframe(this);'></iframe> <
那是我的iframe脚本。
所以我要做的就是每页动态调整iFrame的大小,并且它在Firefox&amp; IE,但不是Chrome。是什么赋予了?任何想法的家伙?
提前致谢。
答案 0 :(得分:0)
这似乎是bug with chrome。为什么现在不能使用clientHeight而不是scrollHeight?
答案 1 :(得分:0)
你可以这样做:
<iframe src="your url" width="your widthpx" height="your heightpx"></iframe>