iframe内容未知,高度自适应(亲测)

<script>
function setIframeHeight(iframe) {
if (iframe) {
	var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;
		if (iframeWin.document.body) {
			iframe.height = iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight;
		}
	}
};

window.onload = function () {
	setIframeHeight(document.getElementById('external-frame'));
};
</script>

页面

<iframe src="backtop.html" frameborder="0" scrolling="no" id="external-frame" οnlοad="setIframeHeight(this)"></iframe>
发布了57 篇原创文章 · 获赞 237 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/Smile__1/article/details/89508352