IFREAM 高度自适应 博客分类: HTML ifream自适应
程序员文章站
2024-03-25 21:10:34
...
不支持跨域
<iframe src="http://www.baidu.com" frameborder="0" width="100%" scrolling="no" onload="setIframeHeight(this)" id="pframe" name="pframe"></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;
}
}
};
</script>
参考地址:
http://caibaojian.com/iframe-adjust-content-height.html
下一篇: 不容错过的jQuery图片动画及源码