好的,嘿。
我正在尝试获取 iframe 的内容以调整 iframe 的高度以显示 iframe 中的所有内容。
这是我借来的代码,它可以在 Safari 上运行,但不能在我亲爱的 Chrome 上运行;
<script type="text/javascript">
function getDocHeight(doc) {
doc = doc || document;
var body = doc.body, html = doc.documentElement;
var height = Math.max( body.scrollHeight, body.offsetHeight,
html.clientHeight, html.scrollHeight, html.offsetHeight );
return height;
}
function setIframeHeight(id) {
var ifrm = document.getElementById(id);
var doc = ifrm.contentDocument? ifrm.contentDocument: ifrm.contentWindow.document;
ifrm.style.visibility = 'hidden';
ifrm.style.height = "10px";
ifrm.style.height = getDocHeight( doc ) + "px";
ifrm.style.visibility = 'visible';
}
</script>
这是 iframe;
<iframe src="http://google.com/"
iframe id="ifrm" name="ifrm" src="height1.html"
onload="setIframeHeight(this.id)"
frameborder="0" width="100%" height="0" >
</iframe>
谢谢 :)